Created
March 15, 2017 15:23
-
-
Save anonymous/07f0b4d4981feb030c8d53d38d250f74 to your computer and use it in GitHub Desktop.
Download stack for usenet.
This file contains 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: | |
nzbget: | |
image: "linuxserver/nzbget:latest" | |
environment: | |
- PUID=0 | |
- PGID=0 | |
- TZ=Europe/Amsterdam | |
ports: | |
- "6789:6789" | |
volumes: | |
- <folder_on_host>:/config | |
- <folder_on_host>:/downloads | |
hydra: | |
image: "linuxserver/hydra:latest" | |
environment: | |
- PUID=0 | |
- PGID=0 | |
- TZ=Europe/Amsterdam | |
links: | |
- nzbget:nzbget | |
ports: | |
- "5075:5075" | |
volumes: | |
- <folder_on_host>:/config | |
- <folder_on_host>:/downloads | |
sonarr: | |
image: "linuxserver/sonarr:latest" | |
environment: | |
- PUID=0 | |
- PGID=0 | |
- TZ=Europe/Amsterdam | |
links: | |
- nzbget:nzbget | |
- hydra:hydra | |
ports: | |
- "8989:8989" | |
volumes: | |
- /dev/rtc:/dev/rtc:ro | |
- <folder_on_host>:/config | |
- <folder_on_host>:/downloads | |
- <folder_on_host>:/tv | |
radarr: | |
image: "linuxserver/radarr:latest" | |
environment: | |
- PUID=0 | |
- PGID=0 | |
- TZ=Europe/Amsterdam | |
links: | |
- nzbget:nzbget | |
- hydra:hydra | |
ports: | |
- "7878:7878" | |
volumes: | |
- /dev/rtc:/dev/rtc:ro | |
- <folder_on_host>:/config | |
- <folder_on_host>:/downloads | |
- <folder_on_host>:/tv |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment