Files
PixelStreamingPlayerSite/WebServers/SignallingWebServer/platform_scripts/bash/docker-start-cirrus-with-turn.sh
T
2022-12-01 12:41:24 +05:00

16 lines
304 B
Bash

#!/bin/bash
# Copyright Epic Games, Inc. All Rights Reserved.
# Suppress printing of directory stack
pushd () {
command pushd "$@" > /dev/null
}
popd () {
command popd "$@" > /dev/null
}
# Stop both stun and turn
pushd "$(dirname ${BASH_SOURCE[0]})"
./docker-start-cirrus.sh --with-turn &
popd