Files
homelab/diun/compose.yml
2024-06-07 20:47:55 +00:00

26 lines
521 B
YAML

services:
diun:
container_name: diun
image: crazymax/diun:4
command: serve
hostname: $HOST # server hostname
volumes:
- ./appdata:/data
- $SOCKET:/var/run/docker.sock
restart: unless-stopped
environment:
- TZ=Europe/Paris
- DIUN_WATCH_WORKERS=20
- DIUN_WATCH_SCHEDULE=0 */6 * * *
- DIUN_WATCH_JITTER=30s
- DIUN_PROVIDERS_DOCKER=true
networks:
- proxy
labels:
# Diun
diun.enable: true
networks:
proxy:
external: true