22 lines
443 B
YAML
22 lines
443 B
YAML
networks:
|
|
frontend:
|
|
external: true
|
|
backend:
|
|
external: true
|
|
|
|
services:
|
|
dozzle:
|
|
container_name: notifarr
|
|
hostname: notifarr
|
|
image: golift/notifiarr:latest
|
|
restart: unless-stopped
|
|
security_opt:
|
|
- apparmor:unconfined
|
|
volumes:
|
|
- /docker/appdata/notifiarr:/config
|
|
- /var/run/utmp:/var/run/utmp
|
|
- /etc/machine-id:/etc/machine-id
|
|
ports:
|
|
- 5454:5454
|
|
networks:
|
|
- frontend |