forked from ionorg/ion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
69 lines (62 loc) · 1.37 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
version: '3.7'
services:
web:
# build:
# dockerfile: ./docker/web.Dockerfile
# context: .
image: pionwebrtc/ion-web
volumes:
- "./docker/Caddyfile:/etc/Caddyfile"
ports:
- 80:80
- 8080:8080
- 8443:8443
depends_on:
- biz
environment:
- WWW_URL
- ADMIN_EMAIL
sfu:
# build:
# dockerfile: ./docker/sfu.Dockerfile
# context: .
command: "-c /configs/sfu.toml"
image: pionwebrtc/ion-sfu
volumes:
- "./docker/sfu.toml:/configs/sfu.toml"
ports:
- "5000-5200:5000-5200/udp"
depends_on:
- nats
- etcd
biz:
# build:
# dockerfile: ./docker/biz.Dockerfile
# context: .
image: pionwebrtc/ion-biz
command: "-c /configs/biz.toml"
volumes:
- "./docker/biz.toml:/configs/biz.toml"
depends_on:
- nats
- etcd
islb:
# build:
# dockerfile: ./docker/islb.Dockerfile
# context: .
image: pionwebrtc/ion-islb
command: "-c /configs/islb.toml"
volumes:
- "./docker/islb.toml:/configs/islb.toml"
depends_on:
- nats
- etcd
- redis
nats:
image: nats
etcd:
image: gcr.io/etcd-development/etcd:v3.3.18
entrypoint: "/usr/local/bin/etcd"
command: "--listen-client-urls http://0.0.0.0:2379 --advertise-client-urls http://0.0.0.0:2379"
redis:
image: redis:5.0.7