-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
51 lines (45 loc) · 776 Bytes
/
compose.yaml
File metadata and controls
51 lines (45 loc) · 776 Bytes
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
services:
engine:
container_name: engine
build:
context: ./src
target: engine
ports:
- 5001:5001
gateway:
container_name: gateway
build:
context: ./src
target: gateway
ports:
- 5002:5001
frontend:
container_name: frontend
build:
context: ./src
target: frontend
ports:
- "3000:3000"
mongo:
container_name: mongo
build:
context: ./src
target: mongo
ports:
- "8000:8000"
expose:
- 8000
online:
container_name: online
build:
context: ./src
target: online
ports:
- "8080:8000"
stats:
container_name: stats
build:
context: ./src
target: stats
ports:
- 5003:5001