Add sabnzbd (#29)

* Added plex permissions and folder structure

* corrected typo

* Added sabnzbd support

* Fix folder creation for usenet

* Tweak for sabnzbd config path

* Changed download path

* Update docker-compose.yml

* Update docker-compose.yml

* Update README.md
This commit is contained in:
Vince van Daal
2023-05-24 12:26:48 +02:00
committed by GitHub
parent 297b3bfe98
commit 64b8b73c7a
6 changed files with 86 additions and 24 deletions

View File

@@ -109,7 +109,7 @@ services:
container_name: plex
network_mode: host
environment:
- PUID=${UID}
- PUID=13010
- PGID=13000
- VERSION=docker
- PLEX_CLAIM=
@@ -166,3 +166,17 @@ services:
- "6881:6881/udp"
restart: unless-stopped
sabnzbd:
image: lscr.io/linuxserver/sabnzbd:latest
container_name: sabnzbd
environment:
- PUID=13011
- PGID=13000
- UMASK=002
- TZ=Europe/Amsterdam
volumes:
- /home/user/ezarr/config/sabnzbd-config:/config
- /home/user/ezarr/data/usenet:/data/usenet
ports:
- "8081:8080"
restart: unless-stopped