From 87a4748b407adeedf7c2f252e55d96450cf352b8 Mon Sep 17 00:00:00 2001 From: LouisLam Date: Wed, 29 Sep 2021 12:40:28 +0800 Subject: [PATCH] check back to root user for Debian, until problem has been found (#488) --- extra/entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extra/entrypoint.sh b/extra/entrypoint.sh index 0f1d4e2f..23c4f017 100644 --- a/extra/entrypoint.sh +++ b/extra/entrypoint.sh @@ -2,8 +2,8 @@ # set -e Exit the script if an error happens set -e -PUID=${PUID=1000} -PGID=${PGID=1000} +PUID=${PUID=0} +PGID=${PGID=0} files_ownership () { # -h Changes the ownership of an encountered symbolic link and not that of the file or directory pointed to by the symbolic link.