-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-composer.yml
77 lines (65 loc) · 1.19 KB
/
docker-composer.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
version: '3'
services:
mongo:
image: mongo
ports:
- 27017:27017
volumes:
- mongodb_data:/data/db
notify:
build: ./NotifyService
ports:
- 3006:3006
user-management:
build: ./UserManagementService
ports:
- 3001:3001
depends_on:
- mongo
auth-management:
build: ./AuthManagementService
ports:
- 3002:3002
depends_on:
- mongo
course-management:
build: ./CourseManagementService
ports:
- 3003:3003
depends_on:
- mongo
- notify
learner-management:
build: ./LearnerManagementService
ports:
- 3005:3004
depends_on:
- mongo
payment-management:
build: ./PaymentManagementService
ports:
- 3005:3005
depends_on:
- mongo
api-gateway:
build: ./ApiGateway
ports:
- 3008:3008
depends_on:
- mongo
- auth-management
- user-management
- course-management
- learner-management
- payment-management
- notify
web-ui:
build: ./Web-ui
ports:
- 3000:3000
environment:
- API_URL=http://api-gateway:3008
depends_on:
- api-gateway
volumes:
mongodb_data: