forked from ionorg/ion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.stable.yml
65 lines (56 loc) · 1.03 KB
/
docker-compose.stable.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
version: "3.7"
services:
biz:
image: pionwebrtc/ion:v1.5.3-biz
volumes:
- "./configs/certs:/configs/certs"
ports:
- 8443:8443
depends_on:
- nats
- etcd
networks:
- ionnet
sfu:
image: pionwebrtc/ion:v1.5.3-sfu
ports:
- "5000-5200:5000-5200/udp"
depends_on:
- nats
- etcd
networks:
- ionnet
avp:
image: pionwebrtc/ion:v1.5.3-avp
depends_on:
- nats
- etcd
networks:
- ionnet
islb:
image: pionwebrtc/ion:v1.5.3-islb
depends_on:
- nats
- etcd
- redis
networks:
- ionnet
nats:
image: nats
networks:
- ionnet
etcd:
image: gcr.io/etcd-development/etcd:v3.4.14
entrypoint: "/usr/local/bin/etcd"
command: "--listen-client-urls http://0.0.0.0:2379 --advertise-client-urls http://0.0.0.0:2379"
networks:
- ionnet
redis:
image: redis:6.0.9
networks:
- ionnet
networks:
ionnet:
external: true
name: ionnet
driver: bridge