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

Add Radarr support

This commit is contained in:
Adam Dodman 2017-02-08 23:55:02 +00:00
parent 265a93f605
commit eb2f7a9270
2 changed files with 13 additions and 2 deletions

View File

@ -67,6 +67,17 @@ services:
ports:
- "8181:8181"
radarr:
image: adamant/radarr
depends_on:
- deluge
- nzbget
volumes_from:
- data
- container:media
restart: always
ports:
- "7878:7878"
plex:
image: adamant/alpine-plex
depends_on:

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" "326")
[[ $EUID -ne 0 ]] && echo "Please run this script as root" && exit 1