Skip to content

Instantly share code, notes, and snippets.

Created March 15, 2017 15:23
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/07f0b4d4981feb030c8d53d38d250f74 to your computer and use it in GitHub Desktop.
Save anonymous/07f0b4d4981feb030c8d53d38d250f74 to your computer and use it in GitHub Desktop.
Download stack for usenet.
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