diff --git a/rootfs/app/entrypoint.sh.d/90_chown_webroot.sh b/rootfs/app/entrypoint.sh.d/90_chown_webroot.sh index f593263..8d7076f 100755 --- a/rootfs/app/entrypoint.sh.d/90_chown_webroot.sh +++ b/rootfs/app/entrypoint.sh.d/90_chown_webroot.sh @@ -3,5 +3,5 @@ echo "# chowning ${PATH_WEBROOT} to ${PUID}:${GROUPNAME}..." chown "${PUID}:${GROUPNAME}" "${PATH_WEBROOT}" -R -find "${PATH_WEBROOT}" -type d -exec chmod 0755 {} \; -find "${PATH_WEBROOT}" -type f -exec chmod 0644 {} \; +find "${PATH_WEBROOT}" -type d -exec chmod 0755 {} \; & +find "${PATH_WEBROOT}" -type f -exec chmod 0644 {} \; &