You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
13 lines
314 B
Bash
13 lines
314 B
Bash
|
|
#!/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
|
||
|
|
|