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

Remove unused services

This commit is contained in:
Adam Dodman 2017-03-01 18:07:40 +00:00
parent a339e3d261
commit f7935930f5
2 changed files with 2 additions and 22 deletions

View File

@ -44,26 +44,6 @@ services:
- container:media
restart: always
headphones:
image: adamant/headphones
depends_on:
- deluge
- nzbget
volumes_from:
- data
- container:media
restart: always
radarr:
image: adamant/radarr
depends_on:
- deluge
- nzbget
volumes_from:
- data
- container:media
restart: always
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" "radarr")
SERVICEUID=("745" "647" "526" "236" "787" "426" "439" "0" "368")
SERVICES=("couchpotato" "deluge" "nzbget" "plex" "plexpy" "sickrage" "launcher")
SERVICEUID=("745" "647" "236" "787" "426" "439" "0")
[[ $EUID -ne 0 ]] && echo "Please run this script as root" && exit 1