-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
52 lines (51 loc) · 1.13 KB
/
compose.yaml
File metadata and controls
52 lines (51 loc) · 1.13 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: debatemate
services:
coturn:
image: coturn/coturn:latest
container_name: coyouturnme
restart: unless-stopped
# network_mode: host
ports:
## STUN/TURN
- '3478:3478'
- '3478:3478/udp'
# - "3479:3479"
# - "3479:3479/udp"
# - "80:80"
# - "80:80/udp"
## STUN/TURN SSL
- '5349:5349'
- '5349:5349/udp'
# - "5350:5350"
# - "5350:5350/udp"
# - "443:443"
# - "443:443/udp"
volumes:
- ../turnserver.conf:/etc/coturn/turnserver.conf:ro
- ./signal/cert:/etc/coturn/cert
command:
# turnserver
# -n
# --log-file=stdout
# --min-port=49160
# --max-port=49200
# --no-cli
# --no-tcp
# --listening-port=3478
# --tls-listening-port=5349
# --alt-listening-port=0
# --alt-tls-listening-port=0
# -u someUser:somePassword
# --realm=turn.example.com
# --no-dtls
# --no-tlsv1
# --no-tlsv1_1
signal:
build:
context: ./signal
dockerfile: Dockerfile
container_name: signalm8
depends_on:
- coturn
ports:
- '5000:5000'