Skip to content
Snippets Groups Projects
Select Git revision
  • ad5fcbc11d68d9aaadc5ef3027eead0d57c2e304
  • master default protected
  • prod_dlrg
  • bugifx_configure_once
  • fix_path_chaos
  • feature_mumbleIntegration
6 results

update_containers.sh

Blame
  • 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