infrastructure/coreos-config/compose/05_diun/docker-compose.yaml

23 lines
359 B
YAML
Raw Normal View History

2022-10-10 00:06:56 +02:00
---
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:
...