From 1775b2479373be0781600058da72fab40100a6ef Mon Sep 17 00:00:00 2001 From: coolnsx Date: Fri, 3 Oct 2025 20:13:16 +0530 Subject: [PATCH] feat: add tzdata package to make nextcloud run on local timezon --- nextcloud/nextcloud-entrypoint.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nextcloud/nextcloud-entrypoint.sh b/nextcloud/nextcloud-entrypoint.sh index 064212c..c586263 100755 --- a/nextcloud/nextcloud-entrypoint.sh +++ b/nextcloud/nextcloud-entrypoint.sh @@ -11,6 +11,9 @@ set -eu # so that your nextcloud can run or update properly. # ################################################################# +# fix nextcloud not setting Local Time zone +apk add --no-cache tzdata + # default to UID=1000 if not set TARGET_UID="${PUID:-1000}"