This commit is contained in:
C
2022-12-01 12:41:24 +05:00
parent 1513aac2a8
commit 880d0345a2
111 changed files with 14389 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