1
1
services :
2
2
peerprep :
3
3
build : peerprep
4
- image : modembcc /peerprep
4
+ image : distractedcat /peerprep
5
5
env_file :
6
6
- peerprep/.env
7
7
ports :
@@ -17,7 +17,7 @@ services:
17
17
18
18
user-service :
19
19
build : user-service
20
- image : modembcc /user-service
20
+ image : distractedcat /user-service
21
21
volumes :
22
22
- /user-service/node_modules
23
23
env_file :
@@ -34,7 +34,7 @@ services:
34
34
35
35
backend :
36
36
build : backend
37
- image : modembcc /backend
37
+ image : distractedcat /backend
38
38
env_file :
39
39
- backend/.env
40
40
ports :
@@ -73,7 +73,7 @@ services:
73
73
74
74
matching-service :
75
75
build : matching-service
76
- image : modembcc /matching-service
76
+ image : distractedcat /matching-service
77
77
env_file :
78
78
- matching-service/.env
79
79
extra_hosts :
@@ -89,7 +89,7 @@ services:
89
89
90
90
matching-service-api :
91
91
build : matching-service-api
92
- image : modembcc /matching-service-api
92
+ image : distractedcat /matching-service-api
93
93
env_file :
94
94
- matching-service-api/.env
95
95
extra_hosts :
@@ -107,7 +107,7 @@ services:
107
107
108
108
storage-blob-api :
109
109
build : storage-blob-api
110
- image : modembcc /storage-blob-api
110
+ image : distractedcat /storage-blob-api
111
111
env_file :
112
112
- storage-blob-api/.env
113
113
extra_hosts :
@@ -124,7 +124,7 @@ services:
124
124
125
125
collab :
126
126
build : collab
127
- image : modembcc /collab
127
+ image : distractedcat /collab
128
128
env_file :
129
129
- collab/.env
130
130
ports :
@@ -134,6 +134,20 @@ services:
134
134
- action : rebuild
135
135
path : collab
136
136
target : collab/app
137
+
138
+ nginx :
139
+ build : nginx
140
+ image : distractedcat/nginx
141
+ ports :
142
+ - " 80:80"
143
+ volumes :
144
+ - ./nginx/nginx.conf:/etc/nginx/nginx.conf
145
+ depends_on :
146
+ - peerprep
147
+ - backend
148
+ - user-service
149
+ - storage-blob-api
150
+ - matching-service-api
137
151
# mongo:
138
152
# image: "mongo:latest"
139
153
# ports:
0 commit comments