Select Git revision
update_containers.sh

Armin Co authored
update_containers.sh 396 B
#!/bin/bash
# Update and restart containers
source config.sh
echo "Pulling images"
echo ""
# pull updated images
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
fi
if [$USE_NOVNC = "true"]; then
docker-compose -f $novnc_compose_file build
fi