Skip to main content
Skip table of contents

How to change the Timezone in a Docker container?

By default, a Docker container uses UTC as its timezone.

To change the Docker container Timezone, you may:

_ Specify the TZ at container creation with the follwing setting:

CODE
docker run --name convertigo -e TZ=Europe/Paris -p 28080:28080 convertigo:latest

_ Install the tzdata package in the container:

CODE
apt-get update && apt-get install -y tzdata
dpkg-reconfigure tzdata

Source: https://tecadmin.net/change-timezone-in-docker-container/

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.