Skip to content

Instantly share code, notes, and snippets.

@WN1188
Created December 10, 2019 03:44
Show Gist options
  • Save WN1188/d6734235326a6ae128b29ae5f884b35d to your computer and use it in GitHub Desktop.
Save WN1188/d6734235326a6ae128b29ae5f884b35d to your computer and use it in GitHub Desktop.
wade@docker:~/pvr-compose$ cat docker-compose.yml
version: '3'
services:
radarr:
container_name: radarr
restart: unless-stopped
ports:
- 7878:7878
volumes:
- /home/wade/radarr:/config
- /mnt/media/downloads:/downloads
- /mnt/media/Movies:/movies
environment:
- PUID=816
- PGID=816
- TZ=America/Pacific
image: linuxserver/radarr
sonarr:
container_name: sonarr
restart: unless-stopped
ports:
- 8989:8989
volumes:
- /home/wade/sonarr:/config
- /mnt/media/Downloads:/downloads
- /mnt/media:/TV
environment:
- PUID=816
- PGID=816
- TZ=America/Pacific
image: linuxserver/sonarr
sabnzbd:
container_name: sabnzbd
restart: unless-stopped
ports:
- 8080:8080
- 9090:9090
volumes:
- /home/wade/sabnzbd:/config
- /mnt/media/Downloads/complete:/downloads
- /mnt/media/Downloads/incomplete:/incomplete-downloads
environment:
- PUID=816
- PGID=816
- TZ=America/Pacific
image: linuxserver/sabnzbd
jackett:
container_name: jackett
restart: unless-stopped
ports:
- 9117:9117
volumes:
- /home/wade/jackett:/config
environment:
- PUID=816
- PGID=816
- TZ=America/Pacific
image: linuxserver/jackett
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment