Docker - Bobleoble/tech-journal GitHub Wiki

Docker Configuration

Teamspeak Docker-Compose Setup

  • Create a directory to store the container with mkdir teamspeak_server.
  • Create a .yml file for docker-compose configuration with touch teamspeak.yml.
  • Copy teamspeak.yml into that file.
  • Open firewall ports with firewall-cmd --permanent --add-port=9987/udp, firewall-cmd --permanent --add-port=10011/tcp, and firewall-cmd --permanent --add-port=30033/tcp.
  • Reload the firewall with firewall-cmd --reload.

Launching the Teamspeak Server with Docker-Compose

  • To start the Teamspeak Server run docker-compose -f teamspeak.yml up.
  • If it encounters any problems, restart docker with systemctl restart docker, and docker-compose with systemctl restart docker-compose.