-
Notifications
You must be signed in to change notification settings - Fork 2
/
compose.yaml
46 lines (46 loc) · 1.03 KB
/
compose.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
services:
api_server:
image: maxutility2011/ezlivestreaming_apiserver
build:
context: .
dockerfile: ./docker/Dockerfile.server
volumes:
- $HOME/.aws/:/home/streamer/.aws/
ports:
- "1080:1080"
- "4080:4080"
links:
- "redis:redis"
- "key_server:key_server"
scheduler:
image: maxutility2011/ezlivestreaming_scheduler
build:
context: .
dockerfile: ./docker/Dockerfile.scheduler
volumes:
- $HOME/.aws/:/home/streamer/.aws/
ports:
- "3080:3080"
links:
- "redis:redis"
key_server:
image: maxutility2011/ezlivestreaming_keyserver
build:
context: .
dockerfile: ./docker/Dockerfile.keyserver
ports:
- "5080:5080"
redis:
image: redis
ports:
- "6379:6379"
worker:
image: maxutility2011/ezlivestreaming_worker
build:
context: .
dockerfile: ./docker/Dockerfile.worker
volumes:
- $HOME/.aws/:/home/streamer/.aws/
ports:
- "2080:2080"
- "1935-1950:1935-1950"