From 4bf7fe41526c194a2cc820925067167ee8a24b0f Mon Sep 17 00:00:00 2001 From: Peter Macdonald Date: Fri, 2 May 2025 15:39:38 +0200 Subject: [PATCH] docs: adds small addition to docker compose pg environment variables about setting timezones optionally Signed-off-by: Peter Macdonald --- docs/getting-started/config/database.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/getting-started/config/database.md b/docs/getting-started/config/database.md index e068361966..eed1586dc8 100644 --- a/docs/getting-started/config/database.md +++ b/docs/getting-started/config/database.md @@ -153,6 +153,9 @@ services: environment: POSTGRES_USER: postgres POSTGRES_PASSWORD: + # If you want to set a timezone you can use the following environment variables, this is handy when trying to figure out when scheduled tasks will run! + # TZ: Europe/Stockholm + # PGTZ: Europe/Stockholm ports: - 5432:5432 ```