docker: Fix HOME setting (fixes #6234) (#6235)

su-exec sets $HOME, and we used to have this env call in there to fix
that up. It disappeared in the latest entrypoint.sh rewrite.
This commit is contained in:
Jakob Borg 2019-12-22 17:50:16 +01:00 committed by Simon Frei
parent fb5f1bb56a
commit 3dc3e01f80
1 changed files with 1 additions and 1 deletions

View File

@ -4,4 +4,4 @@ set -eu
chown "${PUID}:${PGID}" "${HOME}" \
&& exec su-exec "${PUID}:${PGID}" \
"$@"
env HOME="$HOME" "$@"