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:rodocker run -v /etc/localtime:/etc/localtime:ro ... codeswhat/drydockSolution 2: use the standard TZ environment variable
services:
drydock:
image: codeswhat/drydock
...
environment:
- TZ=Europe/Parisdocker run -e "TZ=Europe/Paris" ... codeswhat/drydockYou can find the list of the supported values here.