Tobias Manske
5a8416fcdf
All checks were successful
continuous-integration/drone/push Build is passing
30 lines
454 B
YAML
30 lines
454 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
|
|
networks:
|
|
- default
|
|
- pantalaimon
|
|
|
|
volumes:
|
|
data:
|
|
|
|
networks:
|
|
pantalaimon:
|
|
external: true
|
|
|
|
...
|