From a4e6f4c65e7d5a769165c53bcb5f363f664d0ade Mon Sep 17 00:00:00 2001 From: Spoked Date: Sat, 16 Dec 2023 22:17:51 -0500 Subject: [PATCH] Needs to be set to alias instead of explicit id --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 7159398a..85aeeefd 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -23,7 +23,7 @@ PGID=${PGID:-1000} addgroup -g $PGID iceberg adduser -D -u $PUID -G iceberg iceberg -chown -R 1000:1000 /iceberg +chown -R iceberg:iceberg /iceberg chmod -R 755 /iceberg trap "echo 'Shutting down...'; exit" SIGINT SIGTERM