Archived
1
0
Fork 0
This repository has been archived on 2023-09-27. You can view files and clone it, but cannot push or open issues or pull requests.
ts3web/docker-compose/docker-compose.yml

32 lines
683 B
YAML
Raw Normal View History

version: '2'
networks:
2019-08-06 18:27:17 +00:00
teamspeak:
external: false
services:
app:
container_name: teamspeak_app
image: teamspeak:latest
volumes:
2019-08-06 18:27:17 +00:00
- ./app:/var/ts3server
- ./whitelist.txt:/whitelist.txt
ports:
- 10011:10011
- 30033:30033
- 9987:9987/udp
environment:
- TS3SERVER_LICENSE=accept
- TS3SERVER_IP_WHITELIST=/whitelist.txt
restart: always
2019-08-06 18:27:17 +00:00
network_mode: "host"
web:
container_name: teamspeak_web
image: teamspeak_web:latest
volumes:
- ./env:/var/www/html/application/config/env
ports:
2019-08-06 18:27:17 +00:00
- 127.0.0.1:8181:80
depends_on:
- app
restart: always
networks:
2019-08-06 18:27:17 +00:00
- teamspeak