Date Time issue #89
Replies: 2 comments 2 replies
-
Are you using For your note 1, you should be able to add an environment variable in your docker-compose (or in docker run command): environment:
TZ: America/Chicago # for example. Use your own timezone here. or add a volume that points to /etc/localtime: volumes:
- /volume1/docker/callattendant/config:/app/config:rw
- /etc/localtime:/etc/localtime:ro ...I use the latter method (volume to I have confirmed that both of these methods works. Here's my full services:
callattendant:
container_name: callattendant
image: telnetdoogie/callattendant-docker:latest
devices:
- /dev/ttyACM0
volumes:
- /volume1/docker/callattendant/config:/app/config:rw
- /etc/localtime:/etc/localtime:ro
ports:
- 8088:5000
restart: unless-stopped |
Beta Was this translation helpful? Give feedback.
-
For your Issue 2, I just tested both |
Beta Was this translation helpful? Give feedback.
-
Hello! I am new to the forum and to the product and my compliments to the developer for getting something like this to work!
I was able to setup the call attendant in a docker container and everything seems to be working with a couple annoyances:
Note all the times in this graphic are 5 hours ahead of EST (my timezone).
Thanks for any assistance!
Beta Was this translation helpful? Give feedback.
All reactions