19 lines
369 B
YAML
19 lines
369 B
YAML
name: diun
|
|
|
|
services:
|
|
diun:
|
|
image: crazymax/diun:latest
|
|
restart: unless-stopped
|
|
container_name: diun
|
|
command: serve
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- "./data:/data"
|
|
- "./diun.yml:/diun.yml:ro"
|
|
- "/var/run/docker.sock:/var/run/docker.sock"
|
|
environment:
|
|
- "TZ=America/New_York"
|
|
labels:
|
|
- "diun.enable=true"
|