File tree Expand file tree Collapse file tree 1 file changed +0
-10
lines changed Expand file tree Collapse file tree 1 file changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -2,26 +2,20 @@ services:
2
2
frontend :
3
3
build :
4
4
context : ./frontend
5
- ports :
6
- - $FRONTEND_PORT:$FRONTEND_PORT
7
5
depends_on :
8
6
- question-service
9
7
- user-service
10
8
11
9
question-service :
12
10
build :
13
11
context : ./question-service
14
- ports :
15
- - $QUESTION_SVC_PORT:$QUESTION_SVC_PORT
16
12
environment :
17
13
- PORT=$QUESTION_SVC_PORT
18
14
- DB_URI=$QUESTION_SVC_DB_URI
19
15
20
16
user-service :
21
17
build :
22
18
context : ./user-service
23
- ports :
24
- - $USER_SVC_PORT:$USER_SVC_PORT
25
19
environment :
26
20
- PORT=$USER_SVC_PORT
27
21
- DB_URI=$USER_SVC_DB_URI
@@ -32,8 +26,6 @@ services:
32
26
matching-service :
33
27
build :
34
28
context : ./matching-service
35
- ports :
36
- - $MATCHING_SVC_PORT:$MATCHING_SVC_PORT
37
29
environment :
38
30
- PORT=$MATCHING_SVC_PORT
39
31
@@ -58,5 +50,3 @@ services:
58
50
redis :
59
51
image : redis:7.4-alpine
60
52
restart : always
61
- ports :
62
- - 6379:6379
You can’t perform that action at this time.
0 commit comments