16 lines
317 B
Text
16 lines
317 B
Text
|
services:
|
||
|
diun:
|
||
|
container_name: diun
|
||
|
image: docker.io/crazymax/diun:4
|
||
|
network_mode: pasta
|
||
|
restart: always
|
||
|
command: serve
|
||
|
env_file: .env.rendered
|
||
|
volumes:
|
||
|
- ${env['socket']}:/var/run/docker.sock:ro
|
||
|
- ./images.yml:/etc/diun/images.yml:ro
|
||
|
- data:/data
|
||
|
|
||
|
volumes:
|
||
|
data:
|