Timezone
WUD runs in UTC by default.
If you prefer using your local timezone, you have two options:
Option 1: Mount the host timezone file
- Docker Compose
- Docker
services:
whatsupdocker:
image: getwud/wud
...
volumes:
- /etc/localtime:/etc/localtime:ro
docker run -v /etc/localtime:/etc/localtime:ro ... getwud/wud
Option 2: Set the TZ environment variable
- Docker Compose
- Docker
services:
whatsupdocker:
image: getwud/wud
...
environment:
- TZ=Europe/Paris
docker run -e "TZ=Europe/Paris" ... getwud/wud
info
You can find the list of supported TZ database timezones here.