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

37 lines
740 B
YAML
Raw Permalink Normal View History

version: '2'
networks:
network:
ipam:
driver: default
config:
- subnet: 172.254.0.0/16
services:
app:
container_name: teamspeak_app
image: teamspeak:latest
volumes:
- ./teamspeak:/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
networks:
- network
web:
container_name: teamspeak_web
image: teamspeak_web:latest
volumes:
- ./env:/var/www/html/application/config/env
ports:
- 8181:80
depends_on:
- app
restart: always
networks:
- network