flame icon indicating copy to clipboard operation
flame copied to clipboard

Correcting the Time

Open x-tk opened this issue 3 years ago • 3 comments

So currently the custom headers are off since the time is 4 hours ahead of my EST time zone. How do I resolve this? Don't see anywhere in the config to set the timezone or otherwise. Ty!

x-tk avatar Apr 06 '22 15:04 x-tk

Anyone? :)

x-tk avatar Apr 20 '22 18:04 x-tk

You will need to set the TZ environment variable in your container.

If you're using docker run or similar, add -e TZ=America/New_York to your launch command.

If you're using docker compose or similar, add the below to your compose file.

environment:
  - TZ=America/New_York

wasabipesto avatar Apr 27 '22 20:04 wasabipesto

Worked perfectly, thanks so much. Didn't realize it was a docker issue.

x-tk avatar May 01 '22 22:05 x-tk