flame
flame copied to clipboard
Correcting the Time
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!
Anyone? :)
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
Worked perfectly, thanks so much. Didn't realize it was a docker issue.