-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
46 lines (43 loc) · 904 Bytes
/
docker-compose.yml
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
---
version: '2'
services:
asterisk:
image: asterisk-iot/asterisk
build:
context: asterisk
environment:
APPLICATION_NAME: super-conference
ARI_PASSWORD: zomgnotsafe!
RESPOKE_ENDPOINT: webrtc
volumes:
- astdb:/var/lib/asterisk
- keys:/etc/asterisk/keys
network_mode: host
awesome-conference:
image: asterisk-iot/awesome-conference
build:
context: awesome-conference
environment:
PORT: 3000
HOST: ${EXTERNAL_IP}
RESPOKE_ENDPOINT: webrtc
ARI_PASSWORD: zomgnotsafe!
APPLICATION: super-conference
APP_SECRET: XXXX
APP_ID: YYYY
ENDPOINT_ROLE_ID: ZZZZ
depends_on:
- asterisk
networks:
- common
ports:
- "3000:3000"
volumes:
- keys:/etc/asterisk/keys
restart: always
volumes:
astdb: {}
keys: {}
networks:
common:
driver: bridge