mirror of
https://github.com/nextcloud/docker.git
synced 2024-11-18 02:56:42 +01:00
Merge pull request #110 from tilosp-docker/nextcloud-9-cleanup
Nextcloud 9 cleanup
This commit is contained in:
commit
2ed2ea4a28
3 changed files with 0 additions and 13 deletions
|
@ -59,15 +59,11 @@ RUN curl -fsSL -o nextcloud.tar.bz2 \
|
||||||
# https://docs.nextcloud.com/server/11/admin_manual/installation/installation_wizard.html#setting-strong-directory-permissions
|
# 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/data \
|
||||||
&& mkdir -p /usr/src/nextcloud/custom_apps \
|
&& 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 f -print0 | xargs -0 chmod 0640 \
|
||||||
&& find /usr/src/nextcloud/ -type d -print0 | xargs -0 chmod 0750 \
|
&& find /usr/src/nextcloud/ -type d -print0 | xargs -0 chmod 0750 \
|
||||||
&& chown -R root:www-data /usr/src/nextcloud/ \
|
&& 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/custom_apps/ \
|
||||||
&& chown -R www-data:www-data /usr/src/nextcloud/config/ \
|
&& 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/data/ \
|
||||||
&& chown -R www-data:www-data /usr/src/nextcloud/themes/ \
|
&& chown -R www-data:www-data /usr/src/nextcloud/themes/ \
|
||||||
&& chmod +x /usr/src/nextcloud/occ
|
&& chmod +x /usr/src/nextcloud/occ
|
||||||
|
|
|
@ -58,15 +58,11 @@ RUN curl -fsSL -o nextcloud.tar.bz2 \
|
||||||
# https://docs.nextcloud.com/server/11/admin_manual/installation/installation_wizard.html#setting-strong-directory-permissions
|
# 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/data \
|
||||||
&& mkdir -p /usr/src/nextcloud/custom_apps \
|
&& 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 f -print0 | xargs -0 chmod 0640 \
|
||||||
&& find /usr/src/nextcloud/ -type d -print0 | xargs -0 chmod 0750 \
|
&& find /usr/src/nextcloud/ -type d -print0 | xargs -0 chmod 0750 \
|
||||||
&& chown -R root:www-data /usr/src/nextcloud/ \
|
&& 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/custom_apps/ \
|
||||||
&& chown -R www-data:www-data /usr/src/nextcloud/config/ \
|
&& 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/data/ \
|
||||||
&& chown -R www-data:www-data /usr/src/nextcloud/themes/ \
|
&& chown -R www-data:www-data /usr/src/nextcloud/themes/ \
|
||||||
&& chmod +x /usr/src/nextcloud/occ
|
&& chmod +x /usr/src/nextcloud/occ
|
||||||
|
|
|
@ -49,11 +49,6 @@ for latest in "${latests[@]}"; do
|
||||||
sed -ri -e '/a2enmod/d' "$version/$variant/Dockerfile"
|
sed -ri -e '/a2enmod/d' "$version/$variant/Dockerfile"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Remove the assets folder if version >= 10.0
|
|
||||||
if version_greater_or_equal "$version" "10.0"; then
|
|
||||||
sed -ri -e '/assets/d' "$version/$variant/Dockerfile"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Copy the docker-entrypoint.
|
# Copy the docker-entrypoint.
|
||||||
cp docker-entrypoint.sh "$version/$variant/docker-entrypoint.sh"
|
cp docker-entrypoint.sh "$version/$variant/docker-entrypoint.sh"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue