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
NOVNC_DIR=novnc
NOVNC_URL="$GIT_URL$NOVNC_DIR".git
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"
fi
......@@ -51,7 +51,7 @@ fi
MUMBLE_DIR=build-mumble-web
MUMBLE_URL=https://github.com/Johni0702/mumble-web.git
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"
SUB_DOMAINS+="mumble-web"
fi
......@@ -64,7 +64,7 @@ clone_repositories
if [ "$USE_JITSI" == "true" ]; then
git clone $JITSI_URL
./"JITSI_DIR"/setup.sh
./"$JITSI_DIR"/setup.sh
fi
configure_letsencrypt
......
......@@ -8,17 +8,17 @@ echo "Pulling images"
echo ""
# pull updated images
docker-compose $docker_compose_files pull
docker-compose "$docker_compose_files" pull
echo "Building images"
echo ""
# Build new images if neccessary
if [ "$USE_MUMBLE" == "true" ]; then
docker-compose -f $mumble_compose_file build
docker-compose -f "$mumble_compose_file" build
fi
if [ "$USE_NOVNC" == "true" ]; then
docker-compose -f $novnc_compose_file build
docker-compose -f "$novnc_compose_file" build
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment