mirror of
https://github.com/Adam-Ant/media-server-in-a-box
synced 2024-12-20 14:44:34 +00:00
Add support for Radarr
This commit is contained in:
parent
ad0750ca35
commit
f6f34734eb
@ -54,6 +54,16 @@ services:
|
|||||||
- container:media
|
- container:media
|
||||||
restart: always
|
restart: always
|
||||||
|
|
||||||
|
radarr:
|
||||||
|
image: adamant/radarr
|
||||||
|
depends_on:
|
||||||
|
- deluge
|
||||||
|
- nzbget
|
||||||
|
volumes_from:
|
||||||
|
- data
|
||||||
|
- container:media
|
||||||
|
restart: always
|
||||||
|
|
||||||
plex:
|
plex:
|
||||||
image: adamant/alpine-plex
|
image: adamant/alpine-plex
|
||||||
depends_on:
|
depends_on:
|
||||||
|
@ -84,3 +84,11 @@ server {
|
|||||||
proxy_pass http://headphones:8181;
|
proxy_pass http://headphones:8181;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
server {
|
||||||
|
listen 80;
|
||||||
|
server_name radarr.genie;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
proxy_pass http://radarr:7878;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
4
start.sh
4
start.sh
@ -4,8 +4,8 @@
|
|||||||
# Prereqs: docker, docker-compose, curl (https)
|
# Prereqs: docker, docker-compose, curl (https)
|
||||||
|
|
||||||
export VOLDIR="/volumes/media-server"
|
export VOLDIR="/volumes/media-server"
|
||||||
SERVICES=("couchpotato" "deluge" "headphones" "nzbget" "plex" "plexpy" "sickrage" "launcher")
|
SERVICES=("couchpotato" "deluge" "headphones" "nzbget" "plex" "plexpy" "sickrage" "launcher" "radarr")
|
||||||
SERVICEUID=("745" "647" "526" "236" "787" "426" "439" "0")
|
SERVICEUID=("745" "647" "526" "236" "787" "426" "439" "0" "368")
|
||||||
|
|
||||||
[[ $EUID -ne 0 ]] && echo "Please run this script as root" && exit 1
|
[[ $EUID -ne 0 ]] && echo "Please run this script as root" && exit 1
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user