mirror of
https://github.com/Adam-Ant/media-server-in-a-box
synced 2024-11-14 08:26:21 +00:00
Add Hydra Support
This commit is contained in:
parent
8a78438b4c
commit
0e3f4e8fdb
@ -17,6 +17,12 @@ services:
|
||||
- container:media
|
||||
restart: always
|
||||
|
||||
hydra:
|
||||
image: adamant/nzbhydra
|
||||
volumes:
|
||||
- $VOLDIR/hydra:/config
|
||||
restart: always
|
||||
|
||||
sickrage:
|
||||
image: adamant/sickrage
|
||||
depends_on:
|
||||
|
@ -86,5 +86,11 @@ server {
|
||||
auth_request /auth-admin;
|
||||
proxy_pass http://couchpotato:5050;
|
||||
}
|
||||
|
||||
location /hydra {
|
||||
auth_request /auth-admin;
|
||||
proxy_pass http://hydra:5075;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
@ -4,8 +4,8 @@
|
||||
# Prereqs: docker, docker-compose, curl (https), git
|
||||
|
||||
export VOLDIR="/volumes/media-server"
|
||||
SERVICES=("couchpotato" "deluge" "nzbget" "plex" "plexpy" "sickrage" "nginx")
|
||||
SERVICEUID=("901" "902" "904" "900" "905" "906" "0")
|
||||
SERVICES=("couchpotato" "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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user