Bridges the legacy TeamSpeak 3 ServerQuery raw protocol (TCP 10011) to TeamSpeak 6's SSH Query interface (TCP 10022). Includes unit tests, Docker setup, and integration test scaffold. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
16 lines
300 B
YAML
16 lines
300 B
YAML
services:
|
|
ts3query-proxy:
|
|
build: .
|
|
container_name: ts3query-proxy
|
|
restart: unless-stopped
|
|
ports:
|
|
- "10011:10011"
|
|
environment:
|
|
- TS6_HOST=teamspeak6
|
|
- TS6_SSH_PORT=10022
|
|
networks:
|
|
- teamspeak_default
|
|
|
|
networks:
|
|
teamspeak_default:
|
|
external: true
|