0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2025-04-25 12:50:54 +02:00

Move apps.config.php into config dir

This commit is contained in:
Tilo Spannagel 2017-07-01 14:31:06 +02:00
parent ec85bdaf20
commit 40212aaa24
No known key found for this signature in database
GPG key ID: B89F1626A58E1429
16 changed files with 18 additions and 10 deletions

View file

@ -45,6 +45,8 @@ RUN a2enmod rewrite
ENV NEXTCLOUD_VERSION %%VERSION%%
VOLUME /var/www/html
COPY config/* /usr/src/nextcloud/config/
RUN curl -fsSL -o nextcloud.tar.bz2 \
"https://download.nextcloud.com/server/releases/nextcloud-${NEXTCLOUD_VERSION}.tar.bz2" \
&& curl -fsSL -o nextcloud.tar.bz2.asc \
@ -70,7 +72,6 @@ RUN curl -fsSL -o nextcloud.tar.bz2 \
&& chmod +x /usr/src/nextcloud/occ
COPY docker-entrypoint.sh /entrypoint.sh
COPY apps.config.php /usr/src/nextcloud/config/apps.config.php
ENTRYPOINT ["/entrypoint.sh"]
CMD ["%%CMD%%"]