Setting a Time Zone to docker container
I recommend you keep your containers running into the same Time Zone, for that you can use this parameter:
docker run -e TZ=America/Sao_Paulo --name container_name -d image_name ls
Either you can do that way as well:
docker run image_name /bin/bash -c "export TZ=America/Sao_Paulo"