infrastructure/coreos-config/compose/05_diun/docker-compose.yaml
Tobias Manske 579bb20e84
All checks were successful
continuous-integration/drone/push Build is passing
Diun: Monitor Jitsi for updates
2022-10-10 00:06:56 +02:00

23 lines
359 B
YAML

---
version: "3.4"
services:
diun:
image: crazymax/diun:latest
container_name: diun
command: serve
volumes:
- "data:/data"
- "./diun.yml:/diun.yml:ro,Z"
- "./watch.yml:/watch.yml:ro,Z"
environment:
- "TZ=Europe/Berlin"
- "LOG_LEVEL=info"
- "LOG_JSON=false"
restart: always
volumes:
data:
...