added timezone

To use the correct timezone add TZ=<Zone> to your .env file
This commit is contained in:
2026-07-10 01:22:21 +02:00
parent 7dfd090fc7
commit a14b405491
2 changed files with 7 additions and 0 deletions

View File

@@ -49,6 +49,9 @@ services:
- GF_AUTH_ANONYMOUS_ORG_NAME=Main Org.
- GF_AUTH_ANONYMOUS_ORG_ROLE=Viewer
- GF_AUTH_ANONYMOUS_HIDE_VERSION=true
# SQL-computed labels (patterns, raw table, SLA day grouping) use SQLite's
# 'localtime', which resolves to this container's timezone.
- TZ=${TZ:-Etc/UTC}
volumes:
# :ro because any Grafana viewer (incl. anonymous) can send arbitrary SQL
# to the datasource API; the mount and mode=ro keep that harmless.