ensure correct ownership of ./storage/docker

This commit is contained in:
Christian Winther 2024-02-22 14:56:54 +00:00
parent e2821adcca
commit 027f858d85
1 changed files with 1 additions and 0 deletions

View File

@ -11,6 +11,7 @@ entrypoint-set-script-name "$0"
run-as-current-user chown --verbose "${RUNTIME_UID}:${RUNTIME_GID}" "./.env"
run-as-current-user chown --verbose "${RUNTIME_UID}:${RUNTIME_GID}" "./bootstrap/cache"
run-as-current-user chown --verbose "${RUNTIME_UID}:${RUNTIME_GID}" "./storage"
run-as-current-user chown --verbose --recursive "${RUNTIME_UID}:${RUNTIME_GID}" "./storage/docker"
# Optionally fix ownership of configured paths
: "${DOCKER_APP_ENSURE_OWNERSHIP_PATHS:=""}"