Created
March 20, 2019 17:01
-
-
Save jceloria/0573bcc2646980e91f312720bfc3d315 to your computer and use it in GitHub Desktop.
media-stack
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
# | |
# Ansible managed | |
# | |
version: "2" | |
services: | |
nzbget: | |
environment: | |
- PUID=110000 | |
- PGID=110000 | |
- TZ=America/Chicago | |
image: linuxserver/nzbget | |
ports: | |
- 6789:6789 | |
volumes: | |
- /etc/localtime:/etc/localtime:ro | |
- /opt/data/nzbget:/config | |
- /opt/data/nzbget/scripts:/app/scripts | |
- /opt/downloads/nzbget:/downloads | |
- /opt/downloads/monitor/nzbget:/downloads/nzb | |
- /opt/downloads/completed:/downloads/completed | |
cardigann: | |
depends_on: | |
- nzbget | |
environment: | |
- PUID=110000 | |
- PGID=110000 | |
- TZ=America/Chicago | |
image: linuxserver/cardigann | |
ports: | |
- 5060:5060 | |
volumes: | |
- /etc/localtime:/etc/localtime:ro | |
- /opt/data/cardigann:/config | |
radarr: | |
depends_on: | |
- nzbget | |
environment: | |
- PUID=110000 | |
- PGID=110000 | |
- TZ=America/Chicago | |
image: linuxserver/radarr | |
ports: | |
- 7878:7878 | |
volumes: | |
- /etc/localtime:/etc/localtime:ro | |
- /opt/data/radarr:/config | |
- /opt/downloads/completed/movies:/downloads | |
- /opt/downloads/monitor/movies:/monitor | |
- /opt/Multimedia/Movies:/movies | |
sonarr: | |
depends_on: | |
- nzbget | |
environment: | |
- PUID=110000 | |
- PGID=110000 | |
- TZ=America/Chicago | |
image: linuxserver/sonarr | |
ports: | |
- 9898:8989 | |
volumes: | |
- /dev/rtc:/dev/rtc:ro | |
- /etc/localtime:/etc/localtime:ro | |
- /opt/data/sonarr:/config | |
- /opt/downloads/completed/tv:/downloads | |
- /opt/downloads/monitor/tv:/monitor | |
- /opt/Multimedia/TV:/tv | |
lidarr: | |
depends_on: | |
- nzbget | |
environment: | |
- PUID=110000 | |
- PGID=110000 | |
- TZ=America/Chicago | |
image: linuxserver/lidarr | |
ports: | |
- 8686:8686 | |
volumes: | |
- /etc/localtime:/etc/localtime:ro | |
- /opt/data/lidarr:/config | |
- /opt/downloads:/downloads | |
- /opt/downloads/monitor/music:/monitor | |
- /opt/Multimedia/Music:/music | |
htpcmanager: | |
environment: | |
- PUID=110000 | |
- PGID=110000 | |
- TZ=America/Chicago | |
image: linuxserver/htpcmanager | |
ports: | |
- 8085:8085 | |
volumes: | |
- /etc/localtime:/etc/localtime:ro | |
- /opt/data/htpcmanager:/config | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment