Docker - Timezones in containers not same as on host

Solution 1:

You should be able to set timezone in your containers by using tzdata :

docker run -e TZ=Europe/Amsterdam debian:jessie date

Credits and further explanation to "Why containers don't sync time with host" : Docker Container time & timezone (will not reflect changes)