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

Fixing strings

parent 484e22a2
No related branches found
No related tags found
No related merge requests found
...@@ -43,7 +43,7 @@ fi ...@@ -43,7 +43,7 @@ fi
NOVNC_DIR=novnc 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
...@@ -51,7 +51,7 @@ fi ...@@ -51,7 +51,7 @@ fi
MUMBLE_DIR=build-mumble-web 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
...@@ -64,7 +64,7 @@ clone_repositories ...@@ -64,7 +64,7 @@ clone_repositories
if [ "$USE_JITSI" == "true" ]; then if [ "$USE_JITSI" == "true" ]; then
git clone $JITSI_URL git clone $JITSI_URL
./"JITSI_DIR"/setup.sh ./"$JITSI_DIR"/setup.sh
fi fi
configure_letsencrypt configure_letsencrypt
......
...@@ -8,17 +8,17 @@ echo "Pulling images" ...@@ -8,17 +8,17 @@ echo "Pulling images"
echo "" echo ""
# pull updated images # pull updated images
docker-compose $docker_compose_files pull docker-compose "$docker_compose_files" pull
echo "Building images" echo "Building images"
echo "" 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 -f "$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 -f "$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