1
0
mirror of https://github.com/Adam-Ant/media-server-in-a-box synced 2024-07-06 05:36:15 +00:00

Add support for Radarr

This commit is contained in:
Adam Dodman 2017-02-08 23:46:50 +00:00
parent ad0750ca35
commit f6f34734eb
3 changed files with 20 additions and 2 deletions

View File

@ -54,6 +54,16 @@ services:
- container:media
restart: always
radarr:
image: adamant/radarr
depends_on:
- deluge
- nzbget
volumes_from:
- data
- container:media
restart: always
plex:
image: adamant/alpine-plex
depends_on:

View File

@ -84,3 +84,11 @@ server {
proxy_pass http://headphones:8181;
}
}
server {
listen 80;
server_name radarr.genie;
location / {
proxy_pass http://radarr:7878;
}
}

View File

@ -4,8 +4,8 @@
# Prereqs: docker, docker-compose, curl (https)
export VOLDIR="/volumes/media-server"
SERVICES=("couchpotato" "deluge" "headphones" "nzbget" "plex" "plexpy" "sickrage" "launcher")
SERVICEUID=("745" "647" "526" "236" "787" "426" "439" "0")
SERVICES=("couchpotato" "deluge" "headphones" "nzbget" "plex" "plexpy" "sickrage" "launcher" "radarr")
SERVICEUID=("745" "647" "526" "236" "787" "426" "439" "0" "368")
[[ $EUID -ne 0 ]] && echo "Please run this script as root" && exit 1