
TeamSpeak 6 is the next generation of the legendary voice communication platform. Built with enhanced audio quality, modern protocols, and improved security. Perfect for gaming, education, business communication, and community building.
Here's what you need to run a TeamSpeak 6 dedicated server.
Small server, 2-32 users
Medium server, 32-128 users
Large server, 128-512 users
Start hosting from your own computer
Run a TeamSpeak 6 server on your desktop, laptop, VPS, or dedicated machine — GameCP automates Docker setup, resource allocation, and TeamSpeak 6 configuration instantly. Automatic port forwarding means your friends can connect without touching your router. Start local, scale to a VPS when you're ready.
Skip the manual installation, port forwarding, and configuration. Install on your own computer and start hosting instantly.
The full manual process to host a TeamSpeak 6 dedicated server on a VPS. Or install GameCP on your own computer and skip all of this.
Set your server settings, then install Docker, and pull the TeamSpeak 6 container image.
# Update system and install Docker sudo apt update && sudo apt install -y docker.io sudo systemctl enable --now docker # Create game server directory sudo mkdir -p /opt/gameserver # Server configuration export TS_VERSION="latest" export MAX_PLAYERS="32" export TSSERVER_QUERY_SSH_ENABLED="0" export TSSERVER_QUERY_HTTP_ENABLED="0" # Pull the container image docker pull ghcr.io/ptero-eggs/yolks:debian
TeamSpeak 6 uses a custom install script to download and configure the server files.
#!/bin/bash
cd /opt/gameserver
apt-get update
apt-get install -y jq bzip2 curl
ver="$TS_VERSION"
if [ -z "$ver" ] || [ "$ver" = "latest" ]; then
echo "Fetching latest TeamSpeak 6 release..."
json=$(curl -sSL https://api.github.com/repos/teamspeak/teamspeak6-server/releases/latest)
else
echo "Fetching TeamSpeak 6 release: $ver"
json=$(curl -sSL https://api.github.com/repos/teamspeak/teamspeak6-server/releases/tags/$ver 2>/dev/null)
if echo "$json" | grep -q "Not Found"; then
altver=$(echo "$ver" | sed 's/-/\//')
json=$(curl -sSL https://api.github.com/repos/teamspeak/teamspeak6-server/releases/tags/$altver 2>/dev/null)
fi
fi
if echo "$json" | grep -q "Not Found"; then
echo "ERROR: Version not found: $ver"
exit 1
fi
url=$(echo "$json" | jq -r '.assets | map(select((.name | contains("linux_amd64")) and (.name | endswith(".tar.bz2"))))[0].browser_download_url')
if [ -z "$url" ] || [ "$url" = "null" ]; then
echo "ERROR: No linux_amd64 release asset found for version: $ver"
exit 1
fi
echo "Downloading: $url"
curl -sSL "$url" | tar xj --strip-components=1
echo "TeamSpeak 6 installation complete."TeamSpeak 6 requires 2 ports to be open for game traffic and queries.
sudo ufw allow 9987/udp sudo ufw allow 30033/tcp
Start the TeamSpeak 6 server using the configuration from Step 1.
docker run -d \ --name teamspeak6-server \ -p 9987:9987/udp \ -p 30033:30033/tcp \ -e TS_VERSION="latest" \ -e MAX_PLAYERS="32" \ -e TSSERVER_QUERY_SSH_ENABLED="0" \ -e TSSERVER_QUERY_HTTP_ENABLED="0" \ -v /opt/gameserver:/opt/gameserver \ -w /opt/gameserver \ ghcr.io/ptero-eggs/yolks:debian \ ./tsserver --default-voice-port=9987
GameCP automates every step above: Docker, port forwarding, startup, and config. Install on your own PC and deploy a TeamSpeak 6 server in under 5 minutes.
Deploy with GameCPExplore step-by-step setup guides for other popular games supported by GameCP.
Install GameCP on your own computer and start hosting in minutes. Automatic port forwarding, zero config — your friends connect instantly.
No credit card required · Free tier available · Install local, scale later