|
|
|
|
@ -54,7 +54,22 @@ RUN curl -fsSL -o nextcloud.tar.bz2 \
|
|
|
|
|
&& rm -r "$GNUPGHOME" nextcloud.tar.bz2.asc \
|
|
|
|
|
&& tar -xjf nextcloud.tar.bz2 -C /usr/src/ \
|
|
|
|
|
&& rm nextcloud.tar.bz2 \
|
|
|
|
|
&& rm -rf /usr/src/nextcloud/updater
|
|
|
|
|
&& rm -rf /usr/src/nextcloud/updater \
|
|
|
|
|
# https://docs.nextcloud.com/server/11/admin_manual/installation/installation_wizard.html#setting-strong-directory-permissions
|
|
|
|
|
&& mkdir -p /usr/src/nextcloud/data \
|
|
|
|
|
&& mkdir -p /usr/src/nextcloud/custom_apps \
|
|
|
|
|
# only used in nextcloud 9 (assets)
|
|
|
|
|
&& mkdir -p /usr/src/nextcloud/assets \
|
|
|
|
|
&& find /usr/src/nextcloud/ -type f -print0 | xargs -0 chmod 0640 \
|
|
|
|
|
&& find /usr/src/nextcloud/ -type d -print0 | xargs -0 chmod 0750 \
|
|
|
|
|
&& chown -R root:www-data /usr/src/nextcloud/ \
|
|
|
|
|
&& chown -R www-data:www-data /usr/src/nextcloud/custom_apps/ \
|
|
|
|
|
&& chown -R www-data:www-data /usr/src/nextcloud/config/ \
|
|
|
|
|
# only used in nextcloud 9 (assets)
|
|
|
|
|
&& chown -R www-data:www-data /usr/src/nextcloud/assets/ \
|
|
|
|
|
&& chown -R www-data:www-data /usr/src/nextcloud/data/ \
|
|
|
|
|
&& chown -R www-data:www-data /usr/src/nextcloud/themes/ \
|
|
|
|
|
&& chmod +x /usr/src/nextcloud/occ
|
|
|
|
|
|
|
|
|
|
COPY docker-entrypoint.sh /entrypoint.sh
|
|
|
|
|
COPY apps.config.php /usr/src/nextcloud/config/apps.config.php
|
|
|
|
|
|