Problem
The Way the System handles the timezones for the docker containers is:
during the startup of the containers, the directory for the timezone information of the main Centos system is mounted into the docker containers.
so the Docker containers use the timezone settings of the main machine.
Example
Creating NUXEO
docker stop nuxeo; docker rm nuxeo; docker pull paceip/dms_nuxeo:1.9.8.2.6; docker run -d --net=dms --restart=always --log-opt max-size=1g -v /etc/timezone:/etc/timezone:ro -v /etc/localtime:/etc/localtime:ro -p 8080:8080 -v /storage/nuxeo/conf:/etc/nuxeo -v /storage/nuxeo/data:/var/lib/nuxeo/data -v /storage/nuxeo/fonts:/usr/share/fonts/custom-fonts -v /storage/logs/nuxeo:/var/log/nuxeo -v /storage/nuxeo/tmp:/opt/nuxeo/server/tmp --name nuxeo paceip/dms_nuxeo:1.9.8.2.6