forked from NastMz/Unitrack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
416 lines (394 loc) · 11.5 KB
/
docker-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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
version: '3'
services:
timetable:
build: ./backend/client-services/timetable-service
container_name: timetable-service
restart: always
environment:
DATABASE_URI: postgresql://admin:admin@db:5432/unitrackdb
ports:
- "8000:8000"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/healthcheck"]
interval: 20s
timeout: 10s
retries: 10
depends_on:
db:
condition: service_healthy
networks:
- unitrack-network
stop-timetable:
build: ./backend/client-services/stop-timetable-service
container_name: stop-timetable-service
restart: always
environment:
DATABASE_URI: postgresql://admin:admin@db:5432/unitrackdb
ports:
- "8001:8000"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/healthcheck"]
interval: 20s
timeout: 10s
retries: 10
depends_on:
db:
condition: service_healthy
networks:
- unitrack-network
stop:
build: ./backend/client-services/stop-service
container_name: stop-service
restart: always
environment:
DATABASE_URI: postgresql://admin:admin@db:5432/unitrackdb
ports:
- "8002:8000"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/healthcheck"]
interval: 20s
timeout: 10s
retries: 10
depends_on:
db:
condition: service_healthy
networks:
- unitrack-network
login:
build: ./backend/auth-services/login-service
container_name: login-service
restart: always
environment:
DATABASE_URI: postgresql://admin:admin@db:5432/unitrackdb
JWT_SECRET_KEY: 8GvBesJUFFHE5FHTGnD8LjfWI9BK4A3l
ports:
- "8003:8000"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/healthcheck"]
interval: 20s
timeout: 10s
retries: 10
depends_on:
db:
condition: service_healthy
networks:
- unitrack-network
refresh-token:
build: ./backend/auth-services/refresh-token-service
container_name: refresh-token-service
restart: always
environment:
DATABASE_URI: postgresql://admin:admin@db:5432/unitrackdb
JWT_SECRET_KEY: 8GvBesJUFFHE5FHTGnD8LjfWI9BK4A3l
ports:
- "8004:8000"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/healthcheck"]
interval: 20s
timeout: 10s
retries: 10
depends_on:
db:
condition: service_healthy
networks:
- unitrack-network
user-create:
build: ./backend/admin-services/user-services/user-create-service
container_name: user-create-service
restart: always
environment:
DATABASE_URI: postgresql://admin:admin@db:5432/unitrackdb
JWT_SECRET_KEY: 8GvBesJUFFHE5FHTGnD8LjfWI9BK4A3l
ports:
- "8005:8000"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/healthcheck"]
interval: 20s
timeout: 10s
retries: 10
depends_on:
db:
condition: service_healthy
networks:
- unitrack-network
user-read:
build: ./backend/admin-services/user-services/user-read-service
container_name: user-read-service
restart: always
environment:
DATABASE_URI: postgresql://admin:admin@db:5432/unitrackdb
JWT_SECRET_KEY: 8GvBesJUFFHE5FHTGnD8LjfWI9BK4A3l
ports:
- "8006:8000"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/healthcheck"]
interval: 20s
timeout: 10s
retries: 10
depends_on:
db:
condition: service_healthy
networks:
- unitrack-network
user-update:
build: ./backend/admin-services/user-services/user-update-service
container_name: user-update-service
restart: always
environment:
DATABASE_URI: postgresql://admin:admin@db:5432/unitrackdb
JWT_SECRET_KEY: 8GvBesJUFFHE5FHTGnD8LjfWI9BK4A3l
ports:
- "8007:8000"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/healthcheck"]
interval: 20s
timeout: 10s
retries: 10
depends_on:
db:
condition: service_healthy
networks:
- unitrack-network
user-delete:
build: ./backend/admin-services/user-services/user-delete-service
container_name: user-delete-service
restart: always
environment:
DATABASE_URI: postgresql://admin:admin@db:5432/unitrackdb
JWT_SECRET_KEY: 8GvBesJUFFHE5FHTGnD8LjfWI9BK4A3l
ports:
- "8008:8000"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/healthcheck"]
interval: 20s
timeout: 10s
retries: 10
depends_on:
db:
condition: service_healthy
networks:
- unitrack-network
timetable-create:
build: ./backend/timetable-services/timetable-create-service
container_name: timetable-create-service
restart: always
environment:
DATABASE_URI: postgresql://admin:admin@db:5432/unitrackdb
JWT_SECRET_KEY: 8GvBesJUFFHE5FHTGnD8LjfWI9BK4A3l
ports:
- "8009:8000"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/healthcheck"]
interval: 20s
timeout: 10s
retries: 10
depends_on:
db:
condition: service_healthy
networks:
- unitrack-network
timetable-update:
build: ./backend/timetable-services/timetable-update-service
container_name: timetable-update-service
restart: always
environment:
DATABASE_URI: postgresql://admin:admin@db:5432/unitrackdb
JWT_SECRET_KEY: 8GvBesJUFFHE5FHTGnD8LjfWI9BK4A3l
ports:
- "8010:8000"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/healthcheck"]
interval: 20s
timeout: 10s
retries: 10
depends_on:
db:
condition: service_healthy
networks:
- unitrack-network
timetable-delete:
build: ./backend/timetable-services/timetable-delete-service
container_name: timetable-delete-service
restart: always
environment:
DATABASE_URI: postgresql://admin:admin@db:5432/unitrackdb
JWT_SECRET_KEY: 8GvBesJUFFHE5FHTGnD8LjfWI9BK4A3l
ports:
- "8011:8000"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/healthcheck"]
interval: 20s
timeout: 10s
retries: 10
depends_on:
db:
condition: service_healthy
networks:
- unitrack-network
stop-create:
build: ./backend/stop-services/stop-create-service
container_name: stop-create-service
restart: always
environment:
DATABASE_URI: postgresql://admin:admin@db:5432/unitrackdb
JWT_SECRET_KEY: 8GvBesJUFFHE5FHTGnD8LjfWI9BK4A3l
ports:
- "8012:8000"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/healthcheck"]
interval: 20s
timeout: 10s
retries: 10
depends_on:
db:
condition: service_healthy
networks:
- unitrack-network
stop-read:
build: ./backend/stop-services/stop-read-service
container_name: stop-read-service
restart: always
environment:
DATABASE_URI: postgresql://admin:admin@db:5432/unitrackdb
JWT_SECRET_KEY: 8GvBesJUFFHE5FHTGnD8LjfWI9BK4A3l
ports:
- "8013:8000"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/healthcheck"]
interval: 20s
timeout: 10s
retries: 10
depends_on:
db:
condition: service_healthy
networks:
- unitrack-network
stop-update:
build: ./backend/stop-services/stop-update-service
container_name: stop-update-service
restart: always
environment:
DATABASE_URI: postgresql://admin:admin@db:5432/unitrackdb
JWT_SECRET_KEY: 8GvBesJUFFHE5FHTGnD8LjfWI9BK4A3l
ports:
- "8014:8000"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/healthcheck"]
interval: 20s
timeout: 10s
retries: 10
depends_on:
db:
condition: service_healthy
networks:
- unitrack-network
stop-delete:
build: ./backend/stop-services/stop-delete-service
container_name: stop-delete-service
restart: always
environment:
DATABASE_URI: postgresql://admin:admin@db:5432/unitrackdb
JWT_SECRET_KEY: 8GvBesJUFFHE5FHTGnD8LjfWI9BK4A3l
ports:
- "8015:8000"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/healthcheck"]
interval: 20s
timeout: 10s
retries: 10
depends_on:
db:
condition: service_healthy
networks:
- unitrack-network
web:
build: ./frontend/web
container_name: web-app
restart: always
environment:
VITE_API_STOP_URL: http://stop:8000
VITE_API_TIMETABLE_URL: http://timetable-service:8000
VITE_API_STOP_TIMETABLE_URL: http://stop-timetable:8000
ports:
- "80:80"
depends_on:
stop:
condition: service_healthy
timetable:
condition: service_healthy
stop-timetable:
condition: service_healthy
networks:
- unitrack-network
dashboard:
build: ./frontend/dashboard
container_name: dashboard-app
restart: always
environment:
VITE_API_USER_CREATE_URL: http://user-create:8000
VITE_API_USER_READ_URL: http://user-read:8000
VITE_API_USER_UPDATE_URL: http://user-update:8000
VITE_API_USER_DELETE_URL: http://user-delete:8000
VITE_API_STOP_CREATE_URL: http://stop-create:8000
VITE_API_STOP_READ_URL: http://stop-read:8000
VITE_API_STOP_UPDATE_URL: http://stop-update:8000
VITE_API_STOP_DELETE_URL: http://stop-delete:8000
VITE_API_TIMETABLE_CREATE_URL: http://timetable-create:8000
VITE_API_TIMETABLE_READ_URL: http://timetable:8000
VITE_API_TIMETABLE_UPDATE_URL: http://timetable-update:8000
VITE_API_TIMETABLE_DELETE_URL: http://timetable-delete:8000
VITE_API_LOGIN_URL: http://login:8000
VITE_API_REFRESH_TOKEN_URL: http://refresh-token:8000
ports:
- "8080:80"
depends_on:
user-create:
condition: service_healthy
user-read:
condition: service_healthy
user-update:
condition: service_healthy
user-delete:
condition: service_healthy
stop-create:
condition: service_healthy
stop-read:
condition: service_healthy
stop-update:
condition: service_healthy
stop-delete:
condition: service_healthy
timetable-create:
condition: service_healthy
timetable-update:
condition: service_healthy
timetable-delete:
condition: service_healthy
timetable:
condition: service_healthy
networks:
- unitrack-network
db:
image: postgres:latest
restart: always
container_name: unitrack-db
hostname: myhost
environment:
POSTGRES_DB: unitrackdb
POSTGRES_USER: admin
POSTGRES_PASSWORD: admin
volumes:
- ./backend/db/volumes:/var/lib/postgresql/data
- ./backend/db/CREATE_DB.sql:/docker-entrypoint-initdb.d/CREATE_DB.sql
- ./backend/db/INSERT_DB.sql:/docker-entrypoint-initdb.d/INSERT_DB.sql
ports:
- "9091:5432"
healthcheck:
test: ["CMD", "pg_isready", "-U", "admin", "-d", "unitrackdb", "-h", "localhost", "-p", "5432"]
interval: 20s
timeout: 10s
retries: 10
networks:
- unitrack-network
networks:
unitrack-network: