include example files to run an own TURN server via coturn or via docker-compose

This commit is contained in:
schlagmichdoch 2023-04-19 17:38:14 +02:00
parent 2d8bbd5a79
commit b2fc6415da
2 changed files with 57 additions and 0 deletions

19
docker-compose-coturn.yml Normal file
View file

@ -0,0 +1,19 @@
version: "3"
services:
node:
image: "node:lts-alpine"
user: "node"
working_dir: /home/node/app
volumes:
- ./:/home/node/app
command: ash -c "npm i && npm run start:prod"
restart: unless-stopped
ports:
- "3000:3000"
coturn_server:
image: "coturn/coturn"
restart: always
network_mode: "host"
volumes:
- ./turnserver.conf:/etc/coturn/turnserver.conf
#you need to copy turnserver_example.conf to turnserver.conf and specify domain, IP address, user and password