docker-stop-cirrus.sh 301 B

12345678910111213
  1. #!/bin/bash
  2. # Copyright Epic Games, Inc. All Rights Reserved.
  3. # Stop the docker container
  4. PSID=$(docker ps -a -q --filter="name=cirrus_latest")
  5. if [ -z "$PSID" ]; then
  6. echo "Docker stun is not running, no stopping will be done"
  7. exit 1;
  8. fi
  9. echo "Stopping stun server ..."
  10. docker stop cirrus_latest