diff --git a/docker-compose.yml b/docker-compose.yml index 1fd347d..92b2e36 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -34,13 +34,13 @@ services: - container:media restart: always - couchpotato: - image: adamant/couchpotato + radarr: + image: adamant/radarr depends_on: - deluge - nzbget volumes: - - $VOLDIR/couchpotato:/config + - $VOLDIR/radarr:/config volumes_from: - container:media restart: always diff --git a/nginx.cfg b/nginx.cfg index c4a9c12..074124e 100644 --- a/nginx.cfg +++ b/nginx.cfg @@ -82,9 +82,9 @@ server { proxy_pass http://plexpy:8181; } - location /couchpotato { + location /radarr { auth_request /auth-admin; - proxy_pass http://couchpotato:5050; + proxy_pass http://radarr:7878; } location /hydra { diff --git a/update.sh b/update.sh index c20408e..3f8d1e5 100644 --- a/update.sh +++ b/update.sh @@ -4,7 +4,7 @@ # Prereqs: docker, docker-compose, curl (https), git export VOLDIR="/volumes/media-server" -SERVICES=("couchpotato" "deluge" "nzbget" "plex" "plexpy" "sickrage" "nginx" "hydra") +SERVICES=("radarr" "deluge" "nzbget" "plex" "plexpy" "sickrage" "nginx" "hydra") SERVICEUID=("901" "902" "904" "900" "905" "906" "0" "907") [[ $EUID -ne 0 ]] && echo "Please run this script as root" && exit 1