30 lines
484 B
YAML
30 lines
484 B
YAML
version: "3"
|
|
|
|
services:
|
|
node-red:
|
|
image: "nodered/node-red"
|
|
container_name: "node-red"
|
|
environment:
|
|
- TZ=Europe/Berlin
|
|
volumes:
|
|
- ./docker:/data
|
|
ports:
|
|
- 1880:1880
|
|
networks:
|
|
- tsNet
|
|
ts3:
|
|
image: "teamspeak"
|
|
container_name: "ts3"
|
|
environment:
|
|
- TS3SERVER_LICENSE=accept
|
|
ports:
|
|
- "9987:9987/udp"
|
|
- "10011:10011"
|
|
- "30033:30033"
|
|
networks:
|
|
- tsNet
|
|
|
|
networks:
|
|
tsNet:
|
|
driver: bridge
|