This commit is contained in:
Jose Luis Montañes Ojados
2026-01-15 16:49:16 +01:00
commit 47b8173045
23 changed files with 2864 additions and 0 deletions

23
docker-compose.yml Normal file
View File

@@ -0,0 +1,23 @@
version: "3.9"
services:
teamspeak:
image: teamspeak:3.13
container_name: ts3-server
restart: unless-stopped
ports:
- "9987:9987/udp" # Voice
- "10011:10011" # ServerQuery
- "30033:30033" # FileTransfer
environment:
TS3SERVER_LICENSE: accept
volumes:
- ts3-data:/var/ts3server
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
volumes:
ts3-data: