1
0
mirror of https://github.com/Adam-Ant/media-server-in-a-box synced 2024-06-14 10:47:24 +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
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

View File

@ -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 {

View File

@ -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