Skip to content

Instantly share code, notes, and snippets.

@flolivaud
Created October 12, 2016 20:16
Show Gist options
  • Save flolivaud/f0e5aa28f5010ca2fdf5c1e4ff87190a to your computer and use it in GitHub Desktop.
Save flolivaud/f0e5aa28f5010ca2fdf5c1e4ff87190a to your computer and use it in GitHub Desktop.
Docker compose teamspeak server
version: '2'
services:
teamspeak:
image: mbentley/teamspeak:latest
ports:
- "9987:9987/udp"
- "30033:30033"
- "10011:10011"
- "41144:41144"
volumes:
- ./data/:/data
- ./data/ts3server.sqlitedb:/opt/teamspeak/ts3server.sqlitedb
environment:
- logpath=/data/logs/
- query_ip_whitelist=/data/query_ip_whitelist.txt
- query_ip_blacklist=/data/query_ip_blacklist.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment