forked from CS3219-AY2425S1/cs3219-ay2425s1-project-g35
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose-tests.yaml
199 lines (184 loc) · 4 KB
/
docker-compose-tests.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
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
services:
# MongoDB Service for Question Service
mongo:
image: mongo:latest
container_name: mongo
environment:
- MONGO_INITDB_ROOT_USERNAME=root
- MONGO_INITDB_ROOT_PASSWORD=example
ports:
- "27017"
volumes:
- mongo-data:/data/db
networks:
- app-network
# Seed MongoDB server with sample questions
mongo-seed:
build: ./mongo-seed
container_name: mongo-seed
volumes:
- ./mongo-seed:/mongo-seed
depends_on:
user-service:
condition: service_healthy
question-service:
condition: service_started
networks:
- app-network
# QuestionService
question-service:
build: ./QuestionService
container_name: question-service
ports:
- "3000"
environment:
- MONGO_URI=mongodb://root:example@mongo:27017/
- JWT_SECRET=you-can-replace-this-with-your-own-secret
depends_on:
- mongo
networks:
- app-network
# MongoDB Service for UserService
mongo_user:
image: mongo:latest
container_name: mongo_user
environment:
- MONGO_INITDB_ROOT_USERNAME=root
- MONGO_INITDB_ROOT_PASSWORD=example
ports:
- "27017"
volumes:
- mongo-user-data:/data/db
networks:
- app-network
# UserService
user-service:
build: ./UserService
container_name: user-service
ports:
- "3001"
environment:
- DB_LOCAL_URI=mongodb://root:example@mongo_user:27017
- ENV=DEV
- JWT_SECRET=you-can-replace-this-with-your-own-secret
depends_on:
- mongo_user
networks:
- app-network
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:3001"]
interval: 10s
timeout: 5s
retries: 5
# MatchingService
matching-service:
build: ./MatchingService
container_name: MatchingService
ports:
- "3000"
environment:
- JWT_SECRET=you-can-replace-this-with-your-own-secret
depends_on:
- rabbitmq
- redis
networks:
- app-network
# Messaging Queue for MatchingService
rabbitmq:
image: rabbitmq:3-management
container_name: rabbitmq
ports:
- "5672"
- "15672"
environment:
RABBITMQ_DEFAULT_USER: guest
RABBITMQ_DEFAULT_PASS: guest
networks:
- app-network
# Distrbuted Cache for MatchingService
redis:
image: redis:alpine
container_name: redis
depends_on:
- rabbitmq
ports:
- "6379"
networks:
- app-network
# CollaborationService
collaboration-service:
build: ./CollaborationService
container_name: CollaborationService
ports:
- "3002"
depends_on:
- rabbitmq
networks:
- app-network
# Distributed Cache for CollaborationService
redis-collaboration:
image: redis:alpine
container_name: redis-collaboration
depends_on:
- rabbitmq
ports:
- "6379"
networks:
- app-network
# ChatService
chat-service:
build: ./ChatService
container_name: ChatService
ports:
- "3003"
networks:
- app-network
redis-chat:
image: redis:alpine
container_name: redis-chat
ports:
- "6379"
networks:
- app-network
# NGINX Reverse Proxy
nginx:
image: nginx:alpine
container_name: nginx
ports:
- "80:80"
- "443:443"
- "3000:3000"
- "3002:3002"
- "3003:3003"
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf:ro
depends_on:
- question-service
- user-service
- matching-service
- collaboration-service
networks:
- app-network
# Tests
tests:
build: ./tests
container_name: tests
depends_on:
user-service:
condition: service_healthy
question-service:
condition: service_started
mongo-seed:
condition: service_completed_successfully
networks:
- app-network
volumes:
mongo-data:
driver: local
mongo-seed:
driver: local
mongo-user-data:
driver: local
networks:
app-network:
driver: bridge