forked from ionorg/ion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
109 lines (101 loc) · 1.97 KB
/
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
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
version: "3.7"
services:
islb:
image: pionwebrtc/ion:latest-islb
build:
dockerfile: ./docker/islb.Dockerfile
context: .
volumes:
- "./configs/docker/islb.toml:/configs/islb.toml"
depends_on:
- nats
- redis
networks:
- ionnet
sfu:
image: pionwebrtc/ion:latest-sfu
build:
dockerfile: ./docker/sfu.Dockerfile
context: .
volumes:
- "./configs/docker/sfu.toml:/configs/sfu.toml"
ports:
- "15000-15200:15000-15200/udp"
- 3478:3478
depends_on:
- nats
- islb
networks:
- ionnet
avp:
image: pionwebrtc/ion:latest-avp
build:
dockerfile: ./docker/avp.Dockerfile
context: .
volumes:
- "./configs/docker/avp.toml:/configs/avp.toml"
- "./out:/out/"
depends_on:
- nats
- islb
networks:
- ionnet
biz:
image: pionwebrtc/ion:latest-biz
build:
dockerfile: ./docker/biz.Dockerfile
context: .
volumes:
- "./configs/docker/biz.toml:/configs/biz.toml"
ports:
- 5551:5551
depends_on:
- nats
- islb
networks:
- ionnet
biz2:
image: pionwebrtc/ion:latest-biz2
build:
dockerfile: ./docker/biz2.Dockerfile
context: .
volumes:
- "./configs/docker/biz2.toml:/configs/biz2.toml"
ports:
- 5552:5552
depends_on:
- nats
- islb
healthcheck:
test: ["CMD", "/bin/grpc_health_probe", "-addr=:5552", "-service=biz"]
interval: 30s
timeout: 10s
retries: 3
networks:
- ionnet
nats:
image: nats
ports:
- 4222:4222
networks:
- ionnet
redis:
image: redis:6.0.9
ports:
- 6379:6379
networks:
- ionnet
envoy:
image: grpc-envoy-proxy:latest
build:
dockerfile: ./envoy/Dockerfile
context: .
ports:
- 8080:8080
networks:
- ionnet
networks:
ionnet:
external: true
name: ionnet
driver: bridge