What's new
This is a bugfix release. entrypoint.sh crashed on startup with
SKIP_CHOWN: unbound variable for any deployment that did not explicitly
set the SKIP_CHOWN environment variable — which is the default for
almost everyone. The script runs under set -u, and the SKIP_CHOWN
check had no default, so the container exited before the app started.
SKIP_CHOWN now defaults to false, matching how PUID / PGID are
already handled. Setting SKIP_CHOWN=true still behaves exactly as
before.
Changes
- Fixed:
entrypoint.shstartup crash (SKIP_CHOWN: unbound variable) whenSKIP_CHOWNis not set — it now defaults tofalse, consistent with the existingPUID/PGIDpattern - Note: behaviour is unchanged when
SKIP_CHOWNis set explicitly
If you were affected, just pull the new image — no compose or config
changes needed.