ConfigurationTimezone
Timezone
drydock is running in UTC by default.
drydock is running in UTC by default.
If you prefer using a local timezone, you have 2 solutions:
Solution 1: use the local time of your host machine
services:
drydock:
image: codeswhat/drydock
...
volumes:
- /etc/localtime:/etc/localtime:roSolution 2: use the standard TZ environment variable
services:
drydock:
image: codeswhat/drydock
...
environment:
- TZ=Europe/ParisYou can find the list of the supported values here.