16 lines
289 B
YAML
16 lines
289 B
YAML
networks:
|
|
frontend:
|
|
external: true
|
|
|
|
services:
|
|
dozzle:
|
|
container_name: dozzle
|
|
image: amir20/dozzle:latest
|
|
security_opt:
|
|
- apparmor:unconfined
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
ports:
|
|
- 9999:8080
|
|
networks:
|
|
- frontend |