-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathdocker-compose-testbed.yaml
76 lines (69 loc) · 1.99 KB
/
docker-compose-testbed.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
version: '2'
networks:
drachtio-fsmrf:
driver: bridge
ipam:
config:
- subnet: 172.28.0.0/16
services:
drachtio-uac:
image: drachtio/drachtio-server:latest
command: drachtio --contact "sip:*;transport=udp" --loglevel debug
container_name: drachtio-uac
ports:
- "9060:9022/tcp"
networks:
drachtio-fsmrf:
ipv4_address: 172.28.0.10
freeswitch-uac:
image: drachtio/drachtio-freeswitch-mrf:v1.10.1-full
command: freeswitch --sip-port 5060 --rtp-range-start 20000 --rtp-range-end 20020
container_name: freeswitch-uac
volumes:
- ./sounds:/usr/local/freeswitch/sounds
ports:
- "9070:8021/tcp"
networks:
drachtio-fsmrf:
ipv4_address: 172.28.0.11
drachtio-sut:
image: drachtio/drachtio-server:latest
command: drachtio --contact "sip:*;transport=udp" --loglevel debug
container_name: drachtio-sut
ports:
- "9061:9022/tcp"
networks:
drachtio-fsmrf:
ipv4_address: 172.28.0.21
freeswitch-sut:
image: drachtio/drachtio-freeswitch-mrf:v1.10.1-full
command: freeswitch --sip-port 5060 --rtp-range-start 20000 --rtp-range-end 20020
container_name: freeswitch-sut
volumes:
- ./sounds:/usr/local/freeswitch/sounds
- ./recordings:/tmp
ports:
- "9071:8021/tcp"
networks:
drachtio-fsmrf:
ipv4_address: 172.28.0.22
freeswitch-custom-profile-sut:
image: byoungdale/drachtio-freeswitch-custom-mrf-profile:latest
command: freeswitch --sip-port 5060 --rtp-range-start 20000 --rtp-range-end 20020
container_name: freeswitch-custom-profile-sut
volumes:
- ./sounds:/usr/local/freeswitch/sounds
- ./recordings:/tmp
ports:
- "9081:8021/tcp"
networks:
drachtio-fsmrf:
ipv4_address: 172.28.0.23
ws-server:
image: drachtio/sample-ws-audio-fork:latest
container_name: ws-server
volumes:
- ./recordings:/tmp
networks:
drachtio-fsmrf:
ipv4_address: 172.28.0.30