mirror of
https://github.com/moghtech/komodo.git
synced 2026-05-07 10:53:18 -05:00
[GH-ISSUE #1331] stack/service logs always on UTC #9012
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @baragoon on GitHub (Apr 6, 2026).
Original GitHub issue: https://github.com/moghtech/komodo/issues/1331
Hi,
I have a TZ variable for core container:
but every service or stack logs are always shows UTC time instead of defined TZ.
for example
last four lines shows that app container TZ is correct, but core timestamps are 3 hours behind and with Z at the end, which means Zulu time.
@mbecker20 commented on GitHub (Apr 6, 2026):
This is docker engine logs behavior, Komodo just calling docker logs, you could try "local" logging driver for containers, I think it's better anyways https://stackoverflow.com/questions/55466370/how-to-set-timezone-of-docker-logs-t
@baragoon commented on GitHub (Apr 6, 2026):
@mbecker20 thanks, I'll check logging driver for my containers and report results.