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

Update default volume path

This commit is contained in:
Adam Dodman 2016-09-09 00:44:43 +01:00
parent d764f014d3
commit a7a02df7a1

View File

@ -3,7 +3,7 @@
### Adam Dodman <adam.dodman@gmx.com>
# Prereqs: docker, docker-compose, curl (https)
export VOLDIR="/root/volumestest/media"
export VOLDIR="/volumes/media-server"
SERVICES=("couchpotato" "deluge" "headphones" "nzbget" "plex" "plexpy" "sickrage")
SERVICEUID=("745" "647" "526" "236" "787" "426" "439")
@ -18,7 +18,7 @@ DOCKER_MACHINE_NAME="DockerDev"
#Check if docker is installed and running
docker version &> /dev/null
#[[ $? -ne 0 ]] && echo "Cannot connect to Docker daemon. Please check your configuration." && exit 1
[[ $? -ne 0 ]] && echo "Cannot connect to Docker daemon. Please check your configuration." && exit 1
#Check if docker-compose is installed
docker-compose version &> /dev/null
[[ $? -ne 0 ]] && echo "docker-compose not found. Please check your configuration." && exit 1