GameCP Logo
探索啟動面板
GameCP Logo
GameCP

次世代遊戲伺服器管理平台。專為性能、安全性和易用性打造。

產品

  • 功能
  • 整合
  • 應用商店
  • 定價
  • 自訂開發
  • 面板對比

資源

  • 文檔
  • API 參考
  • 推薦計畫
  • 支持
  • 系統狀態

公司

  • 關於我們
  • 聯絡我們

© 2026 GameCP。版權所有。

隱私政策服務條款
TeamSpeak 6 gameplay

Host a TeamSpeak 6 Dedicated Server

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.

Skip the Setup — Deploy Nowor read the full guide below
RequirementsSetup GuideInstallation

Hardware Requirements

Here's what you need to run a TeamSpeak 6 dedicated server.

Economy

Small server, 2-32 users

CPU0.25 cores
RAM256 MB
Storage2 GB

Standard

Medium server, 32-128 users

CPU0.5 cores
RAM512 MB
Storage2 GB

Pro

Large server, 128-512 users

CPU1 core
RAM1 GB
Storage2 GB

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.

Get Started FreeNo credit card required

Setup in 4 Steps

Skip the manual installation, port forwarding, and configuration. Install on your own computer and start hosting instantly.

Step 01

Create a GameCP Account

Sign up for free at gamecp.com. No credit card required. Your dashboard is ready in seconds.

GameCP gives you a full control panel with Docker containerization, file management, automatic port forwarding, and automatic updates — all built in.

Step 02

Connect Your Hardware

Install GameCP on your own desktop, laptop, VPS, or dedicated machine. One-line install — no SSH expertise needed.

GameCP installs Docker, configures networking, and sets up automatic port forwarding so your friends can connect instantly. Start hosting from your own PC and scale to a VPS later. Supports Windows, macOS, and Linux.

Step 03

Deploy TeamSpeak 6

Select "TeamSpeak 6" from the template library and hit deploy. GameCP handles installation, ports, startup commands, and all configuration automatically.

Uses the yolks:debian image. Everything is configured out of the box. ~2 GB storage.

Step 04

Start Playing

Hit start and share your server address. Automatic port forwarding handles the rest — no router config needed.

GameCP monitors your server health and provides live logs from your browser. Your friends connect using the address GameCP gives you.

The Manual Way vs. GameCP

Manual Setup

  • ✗ Configure 2+ firewall ports and router settings
  • ✗ Write systemd service files
  • ✗ SSH into server to edit configs
  • ✗ Requires a VPS or dedicated server
  • ✗ 30-60 minutes if experienced

With GameCP

  • Automatic port forwarding — no router config
  • Host from your own PC, VPS, or dedicated server
  • Docker container with auto-restart
  • Visual config editor in browser
  • Under 5 minutes total

Under the Hood

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.

Step 1

Configure & Prepare

Set your server settings, then install Docker, and pull the TeamSpeak 6 container image.

Server ConfigurationEdit values to update all commands
terminal
# 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
Step 2

Run the Installation Script

TeamSpeak 6 uses a custom install script to download and configure the server files.

Installation Script
#!/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."
Step 3

Open Firewall Ports

TeamSpeak 6 requires 2 ports to be open for game traffic and queries.

terminal
sudo ufw allow 9987/udp
sudo ufw allow 30033/tcp
9987/UDP(PORT)30033/TCP(FILE_TRANSFER_PORT)
Step 4

Launch the Server

Start the TeamSpeak 6 server using the configuration from Step 1.

terminal
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

Or skip all of this

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 GameCP

More Hosting Guides

Explore step-by-step setup guides for other popular games supported by GameCP.

TeamSpeak 3

TeamSpeak 3

Voice

7 Days to Die

7 Days to Die

Survival

ARK: Survival Ascended

ARK: Survival Ascended

Survival

ARK: Survival Evolved

ARK: Survival Evolved

Survival

Arma Reforger

Arma Reforger

survival

Aska

Aska

Survival

BeamMP

BeamMP

Simulation

Conan Exiles

Conan Exiles

Survival

View all supported games

Ready to Host Your TeamSpeak 6 Server?

Install GameCP on your own computer and start hosting in minutes. Automatic port forwarding, zero config — your friends connect instantly.

Deploy NowView Pricing

No credit card required · Free tier available · Install local, scale later

Host TeamSpeak 6 from your own computer. Automatic port forwarding. Zero config.

No credit card requiredDeploy Free