Explorar o código

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.
Jakob Borg %!s(int64=5) %!d(string=hai) anos
pai
achega
3dc3e01f80
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      script/docker-entrypoint.sh

+ 1 - 1
script/docker-entrypoint.sh

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