forked from livekit/sip
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
34 lines (34 loc) · 809 Bytes
/
docker-compose.yaml
File metadata and controls
34 lines (34 loc) · 809 Bytes
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
services:
redis:
image: redis
volumes:
- redis_data:/data
ports:
- 6379:6379
# The following line might be uncommented to run on MacOS
# for testing and development purposes only.
# network_mode: host
livekit:
image: livekit/livekit-server
command: --dev --redis-host localhost:6379
network_mode: host
depends_on:
redis:
condition: service_started
sip:
image: livekit/sip
network_mode: host
environment:
SIP_CONFIG_BODY: |
api_key: 'devkey'
api_secret: 'secret'
ws_url: 'ws://localhost:7880'
redis:
address: 'localhost:6379'
sip_port: 5060
rtp_port: 10000-20000
use_external_ip: true
logging:
level: debug
volumes:
redis_data: