infrastructure/ansible/plays/services/diun/docker-compose.yaml

30 lines
454 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
2023-03-13 22:40:10 +01:00
networks:
- default
- pantalaimon
2022-10-10 00:06:56 +02:00
volumes:
data:
2023-03-13 22:40:10 +01:00
networks:
pantalaimon:
external: true
2022-10-10 00:06:56 +02:00
...