feat: coturn ports

This commit is contained in:
coolnsx
2024-09-01 20:27:41 +05:30
parent 2e063866b2
commit 2e4897b37b
2 changed files with 21 additions and 2 deletions

21
coturn/docker-compose.yml Normal file
View File

@@ -0,0 +1,21 @@
services:
coturn:
image: coturn/coturn:alpine
privileged: true
container_name: coturn
command: -n --log-file=stdout
volumes:
- ./turnserver.conf:/etc/coturn/turnserver.conf
restart: unless-stopped
ports:
- "3478:3478/udp"
- "3478:3478"
- "5349:5349"
- "5349:5349/udp"
- "49160-49200:49160-49200/udp"
networks:
- nginx_proxy
networks:
nginx_proxy:
name: nginx_proxy