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

Change from couchpotato to radarr

This commit is contained in:
Adam Dodman 2017-06-08 13:50:38 +01:00
parent 00e857a035
commit 3f5ed90fd3
3 changed files with 6 additions and 6 deletions

View File

@ -34,13 +34,13 @@ services:
- container:media - container:media
restart: always restart: always
couchpotato: radarr:
image: adamant/couchpotato image: adamant/radarr
depends_on: depends_on:
- deluge - deluge
- nzbget - nzbget
volumes: volumes:
- $VOLDIR/couchpotato:/config - $VOLDIR/radarr:/config
volumes_from: volumes_from:
- container:media - container:media
restart: always restart: always

View File

@ -82,9 +82,9 @@ server {
proxy_pass http://plexpy:8181; proxy_pass http://plexpy:8181;
} }
location /couchpotato { location /radarr {
auth_request /auth-admin; auth_request /auth-admin;
proxy_pass http://couchpotato:5050; proxy_pass http://radarr:7878;
} }
location /hydra { location /hydra {

View File

@ -4,7 +4,7 @@
# Prereqs: docker, docker-compose, curl (https), git # Prereqs: docker, docker-compose, curl (https), git
export VOLDIR="/volumes/media-server" 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") SERVICEUID=("901" "902" "904" "900" "905" "906" "0" "907")
[[ $EUID -ne 0 ]] && echo "Please run this script as root" && exit 1 [[ $EUID -ne 0 ]] && echo "Please run this script as root" && exit 1