signalling server update

This commit is contained in:
2023-05-19 01:59:50 +03:00
parent a0a4ca1cc0
commit d3260522f4
95 changed files with 0 additions and 0 deletions
@@ -0,0 +1,12 @@
#!/bin/bash
# Copyright Epic Games, Inc. All Rights Reserved.
# Stop the docker container
PSID=$(docker ps -a -q --filter="name=coturn_latest")
if [ -z "$PSID" ]; then
echo "Docker turn is not running, no stopping will be done"
exit 1;
fi
echo "Stopping turn server..."
docker stop coturn_latest