forked from jitsi/docker-jitsi-meet
-
Notifications
You must be signed in to change notification settings - Fork 6
/
turn.yaml
29 lines (27 loc) · 796 Bytes
/
turn.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
version: '3.7'
services:
# coturn TURN server project
turn:
image: jitsi/turn
restart: always
ports:
- '${TURN_PORT}:${TURN_PORT}/tcp'
- '${TURN_PORT}:${TURN_PORT}/udp'
- '${TURN_RTP_MIN}-${TURN_RTP_MAX}:${TURN_RTP_MIN}-${TURN_RTP_MAX}/udp'
- '${TURN_ADMIN_PORT}:${TURN_ADMIN_PORT}/tcp'
environment:
- DOCKER_HOST_ADDRESS
- TURN_SECRET
- TURN_REALM
- TURN_TYPE
- TURN_HOST
- TURN_PORT
- TURN_TRANSPORT
- TURN_RTP_MIN
- TURN_RTP_MAX
- TURN_ADMIN_ENABLE
- TURN_ADMIN_USER
- TURN_ADMIN_SECRET
- TURN_ADMIN_PORT
networks:
meet.jitsi: