mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-07 07:55:16 +02:00
feat: add coturn configurations (#143)
* feat: add coturn changes * add turn credentials and config * fix: fix setup_remote script and docker compose
This commit is contained in:
parent
7e438ad049
commit
bf972fcfec
13 changed files with 470 additions and 86 deletions
|
|
@ -58,6 +58,23 @@ services:
|
|||
networks:
|
||||
- app-network
|
||||
|
||||
coturn:
|
||||
image: coturn/coturn:4.8.0
|
||||
container_name: coturn
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "3478:3478/udp" # TURN/STUN UDP
|
||||
- "3478:3478/tcp" # TURN/STUN TCP
|
||||
- "5349:5349/tcp" # TURNS (TLS)
|
||||
- "49152-49200:49152-49200/udp" # Relay ports
|
||||
volumes:
|
||||
- ./config/coturn/turnserver.conf:/etc/coturn/turnserver.conf:ro
|
||||
command:
|
||||
- "-c"
|
||||
- "/etc/coturn/turnserver.conf"
|
||||
networks:
|
||||
- app-network
|
||||
|
||||
volumes:
|
||||
postgres_data:
|
||||
redis_data:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue