docs: adds small addition to docker compose pg environment variables about setting timezones optionally

Signed-off-by: Peter Macdonald <peterm4c@pm.me>
This commit is contained in:
Peter Macdonald
2025-05-02 15:39:38 +02:00
parent f99f505133
commit 4bf7fe4152
+3
View File
@@ -153,6 +153,9 @@ services:
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: <secret>
# 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
```