Skip to content
Snippets Groups Projects
Commit 370909c7 authored by Armin Co's avatar Armin Co
Browse files

Fixing strings

parent 1c63d46d
No related branches found
No related tags found
No related merge requests found
...@@ -44,7 +44,7 @@ NOVNC_DIR=novnc ...@@ -44,7 +44,7 @@ NOVNC_DIR=novnc
NOVNC_URL="$GIT_URL$NOVNC_DIR".git NOVNC_URL="$GIT_URL$NOVNC_DIR".git
if [ "$USE_NOVNC" == "true" ]; then if [ "$USE_NOVNC" == "true" ]; then
novnc_compose_file=" -f novnc/docker-compose.yml " novnc_compose_file=" -f novnc/docker-compose.yml "
DOCKER_COMPOSE_FILES+=$"$novnc_compose_file" DOCKER_COMPOSE_FILES+="$novnc_compose_file"
fi fi
# Mumble # Mumble
...@@ -52,6 +52,6 @@ MUMBLE_DIR=build-mumble-web ...@@ -52,6 +52,6 @@ MUMBLE_DIR=build-mumble-web
MUMBLE_URL=https://github.com/Johni0702/mumble-web.git MUMBLE_URL=https://github.com/Johni0702/mumble-web.git
if [ "$USE_MUMBLE" == "true" ]; then if [ "$USE_MUMBLE" == "true" ]; then
mumble_compose_file=" -f build-mumble-web/docker-compose.production.yml" mumble_compose_file=" -f build-mumble-web/docker-compose.production.yml"
DOCKER_COMPOSE_FILES+=$"$mumble_compose_file" DOCKER_COMPOSE_FILES+="$mumble_compose_file"
SUB_DOMAINS+="mumble-web" SUB_DOMAINS+="mumble-web"
fi fi
...@@ -15,10 +15,10 @@ echo "" ...@@ -15,10 +15,10 @@ echo ""
# Build new images if neccessary # Build new images if neccessary
if [ "$USE_MUMBLE" == "true" ]; then if [ "$USE_MUMBLE" == "true" ]; then
docker-compose -f "$mumble_compose_file" build docker-compose "$mumble_compose_file" build
fi fi
if [ "$USE_NOVNC" == "true" ]; then if [ "$USE_NOVNC" == "true" ]; then
docker-compose -f "$novnc_compose_file" build docker-compose "$novnc_compose_file" build
fi fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment