forked from CS3219-AY2425S1/cs3219-ay2425s1-project-g03
-
Notifications
You must be signed in to change notification settings - Fork 0
/
compose.yml
201 lines (187 loc) · 4.19 KB
/
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
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
200
201
services:
frontend:
container_name: frontend
image: frontend
build:
context: frontend
dockerfile: Dockerfile
ports:
- 4200:4200
restart: always
gateway:
container_name: gateway
image: nginx:1.27
ports:
- 8080:8080
volumes:
- ./nginx/default.conf:/etc/nginx/conf.d/default.conf
depends_on:
- question
- user
- match
- collaboration
- history
networks:
- gateway-network
restart: always
broker:
container_name: broker
hostname: broker
image: rabbitmq:4.0.2
user: rabbitmq
networks:
- gateway-network
healthcheck:
test: rabbitmq-diagnostics check_port_connectivity
interval: 30s
timeout: 30s
retries: 10
start_period: 30s
restart: always
question:
container_name: question
image: question
build:
context: services/question
dockerfile: Dockerfile
environment:
DB_CLOUD_URI: ${QUESTION_DB_CLOUD_URI}
DB_LOCAL_URI: ${QUESTION_DB_LOCAL_URI}
BROKER_URL: ${BROKER_URL}
JWT_SECRET: ${JWT_SECRET}
depends_on:
broker:
condition: service_healthy
networks:
- gateway-network
- question-db-network
restart: always
question-db:
container_name: question-db
image: mongo:7.0.14
volumes:
- question-db:/data/db
networks:
- question-db-network
command: --quiet
restart: always
user:
container_name: user
image: user
build:
context: services/user
dockerfile: Dockerfile
environment:
DB_CLOUD_URI: ${USER_DB_CLOUD_URI}
DB_LOCAL_URI: ${USER_DB_LOCAL_URI}
JWT_SECRET: ${JWT_SECRET}
networks:
- gateway-network
- user-db-network
restart: always
user-db:
container_name: user-db
image: mongo:7.0.14
volumes:
- user-db:/data/db
networks:
- user-db-network
command: --quiet
restart: always
match:
container_name: match
image: match
build:
context: services/match
dockerfile: Dockerfile
environment:
DB_CLOUD_URI: ${MATCH_DB_CLOUD_URI}
DB_LOCAL_URI: ${MATCH_DB_LOCAL_URI}
JWT_SECRET: ${JWT_SECRET}
BROKER_URL: ${BROKER_URL}
depends_on:
broker:
condition: service_healthy
networks:
- gateway-network
- match-db-network
restart: always
match-db:
container_name: match-db
image: mongo:7.0.14
volumes:
- match-db:/data/db
networks:
- match-db-network
restart: always
collaboration:
container_name: collaboration
image: collaboration
build:
context: services/collaboration
dockerfile: Dockerfile
environment:
COLLAB_DB_CLOUD_URI: ${COLLAB_DB_CLOUD_URI}
COLLAB_DB_LOCAL_URI: ${COLLAB_DB_LOCAL_URI}
YJS_DB_CLOUD_URI: ${YJS_DB_CLOUD_URI}
YJS_DB_LOCAL_URI: ${YJS_DB_LOCAL_URI}
BROKER_URL: ${BROKER_URL}
JWT_SECRET: ${JWT_SECRET}
depends_on:
broker:
condition: service_healthy
networks:
- gateway-network
- collaboration-db-network
restart: always
collaboration-db:
container_name: collaboration-db
image: mongo:7.0.14
volumes:
- collaboration-db:/data/db
networks:
- collaboration-db-network
restart: always
history:
container_name: history
image: history
build:
context: services/history
dockerfile: Dockerfile
environment:
DB_CLOUD_URI: ${HISTORY_DB_CLOUD_URI}
DB_LOCAL_URI: ${HISTORY_DB_LOCAL_URI}
BROKER_URL: ${BROKER_URL}
JWT_SECRET: ${JWT_SECRET}
depends_on:
broker:
condition: service_healthy
networks:
- gateway-network
- history-db-network
history-db:
container_name: history-db
image: mongo:7.0.14
volumes:
- history-db:/data/db
networks:
- history-db-network
volumes:
question-db:
user-db:
match-db:
collaboration-db:
history-db:
networks:
gateway-network:
driver: bridge
question-db-network:
driver: bridge
user-db-network:
driver: bridge
match-db-network:
driver: bridge
collaboration-db-network:
driver: bridge
history-db-network:
driver: bridge