Skip to content
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:ro

Solution 2: use the standard TZ environment variable

services:
  drydock:
    image: codeswhat/drydock
    ...
    environment:
      - TZ=Europe/Paris