Created
September 16, 2019 17:07
-
-
Save lkam88/a0ccc73d3422326f8d079a61b2999da9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "2" | |
services: | |
deluge: | |
image: linuxserver/deluge | |
container_name: deluge | |
environment: | |
- PUID=1000 | |
- PGID=1000 | |
- TZ=PST | |
volumes: | |
- /home/pi/config/deluge:/config | |
- /media/nas/downloads:/downloads | |
restart: unless-stopped | |
network_mode: host | |
jackett: | |
image: linuxserver/jackett | |
container_name: jackett | |
environment: | |
- PUID=1000 | |
- PGID=1000 | |
- TZ=PST | |
volumes: | |
- /home/pi/config:/config | |
- /media/nas/downloads:/downloads | |
ports: | |
- 9117:9117 | |
restart: unless-stopped | |
network_mode: host | |
radarr: | |
image: linuxserver/radarr | |
container_name: radarr | |
environment: | |
- PUID=1000 | |
- PGID=1000 | |
- TZ=PST | |
volumes: | |
- /home/pi/config/Radarr:/config | |
- /media/nas/downloads:/downloads | |
- /media/nas/Movies:/movies | |
ports: | |
- 7878:7878 | |
restart: unless-stopped | |
network_mode: host | |
depends_on: | |
- jackett | |
- deluge | |
sonarr: | |
image: linuxserver/sonarr | |
container_name: sonarr | |
environment: | |
- PUID=1000 | |
- PGID=1000 | |
- TZ=PST | |
volumes: | |
- /home/pi/config/Sonarr:/config | |
- /media/nas/downloads:/downloads | |
- /tv:/tv | |
ports: | |
- 8989:8989 | |
restart: unless-stopped | |
network_mode: host | |
depends_on: | |
- jackett | |
- deluge |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment