From 8b8a07e9b089606cbc5c1c84c269b310b3fb2710 Mon Sep 17 00:00:00 2001 From: Theodoros Ploumis Date: Wed, 29 Jul 2026 16:25:56 +0300 Subject: [PATCH] Install tzdata on ddev In order to use the config value `timezone` we need to have the tzdata installed. More info about this option at https://docs.ddev.com/en/stable/users/configuration/config/#timezone --- ddev-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ddev-install.sh b/ddev-install.sh index 26dfe2d..2a041b5 100755 --- a/ddev-install.sh +++ b/ddev-install.sh @@ -1,6 +1,6 @@ #!/usr/bin/ash -apk add --no-cache bash sudo jq curl +apk add --no-cache bash sudo jq curl tzdata adduser -D ddev -g "ddev" -s /bin/bash -D ddev -h /home/ddev echo "ddev ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/ddev && chmod 0440 /etc/sudoers.d/ddev unamearch=$(uname -m)