sabnzbd/compose.yaml

40 lines
810 B
YAML

services:
sabnzbd:
image: lscr.io/linuxserver/sabnzbd:latest
container_name: sabnzbd
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Berlin
volumes:
- /app-config/sabnzbd/config:/config
- usenet:/usenet
- tdarr:/tdarr
- chris:/chris
- /mnt/media:/data
ports:
- 7777:7777
restart: unless-stopped
volumes:
usenet:
name: tdarr_usenet
driver: local
driver_opts:
device: :/usenet
o: addr=10.2.1.1,nolock,hard,rw
type: nfs
tdarr:
name: tdarr
driver: local
driver_opts:
device: :/tdarr
o: addr=10.2.1.1,nolock,hard,rw
type: nfs
chris:
name: chris_data
driver: local
driver_opts:
device: :/chris
o: addr=10.7.1.106,nolock,hard,rw
type: nfs