A Docker project for TeaSpeak, a free alternative to TeamSpeak 3 Server.
January 2025:
docker pull weltongbi/teaspeak:latest
docker run -d \
--name teaspeak \
-p 9987:9987/udp \
-p 10101:10101 \
-p 30303:30303 \
weltongbi/teaspeak:latest
Create a docker-compose.yml file:
version: '3.8'
services:
teaspeak:
image: weltongbi/teaspeak:latest
container_name: teaspeak
restart: unless-stopped
ports:
- "9987:9987/udp"
- "10101:10101"
- "30303:30303"
volumes:
- ./certs:/opt/teaspeak/certs
- ./db:/opt/teaspeak/database
- ./files:/opt/teaspeak/files
- ./log:/opt/teaspeak/logs
environment:
- TZ=UTC
Then run:
docker-compose up -d
git clone https://github.com/weltongbi/teaspeak_docker.git
cd teaspeak_docker
docker build -t weltongbi/teaspeak:latest .
The project includes the following important directories (which are git-ignored):
certs/ - SSL Certificatesdb/ - Database filesfiles/ - Server fileslog/ - Server logsThe server can be configured through the config.yml file. Default settings are suitable for most use cases.
Contributions are always welcome! Please read the contribution guidelines before submitting a pull request.
This project is under the MIT license. See the LICENSE file for details.
If you encounter any issues or have questions, please open an issue on our GitHub repository. For more detailed information and source code, visit the repository.
Content type
Image
Digest
sha256:933840444…
Size
127.5 MB
Last updated
over 1 year ago
docker pull weltongbi/teaspeak:v1.5.8