Corrected default of UID/GID via start script (#1471)

Fixes #1469
This commit is contained in:
Geoff Bourne 2022-04-11 18:00:16 -05:00 committed by GitHub
parent 8ef3fe199f
commit cf1dd9f9e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,6 +3,9 @@
# shellcheck source=start-utils # shellcheck source=start-utils
. "${SCRIPTS:-/}start-utils" . "${SCRIPTS:-/}start-utils"
: "${UID:=1000}"
: "${GID:=1000}"
umask 0002 umask 0002
chmod g+w /data chmod g+w /data