From 936d2c704409bff064f30d2568c65fae01cca417 Mon Sep 17 00:00:00 2001 From: Moritz Date: Mon, 24 Feb 2025 14:44:41 +0100 Subject: [PATCH] add timezone env TX --- .env.sample | 2 ++ compose.yml | 1 + 2 files changed, 3 insertions(+) diff --git a/.env.sample b/.env.sample index 8b50eae..4b49339 100644 --- a/.env.sample +++ b/.env.sample @@ -15,6 +15,8 @@ LOG_LEVEL=warn SECRET_ADMIN_TOKEN_VERSION=v1 # length=48 +TX="Europe/Berlin" + ## DB settings #COMPOSE_FILE="$COMPOSE_FILE:compose.mariadb.yml" #SECRET_DB_PASSWORD_VERSION=v1 diff --git a/compose.yml b/compose.yml index 7b8765a..13983d4 100644 --- a/compose.yml +++ b/compose.yml @@ -16,6 +16,7 @@ services: - "EXTENDED_LOGGING=$EXTENDED_LOGGING" - "LOG_FILE=$LOG_FILE" - "LOG_LEVEL=$LOG_LEVEL" + - "TX=${TX:-Europe/Berlin}" configs: - source: app_entrypoint target: /docker-entrypoint.sh