forked from PSW-2020-ORG1/MedbayTech
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.phtests.yml
289 lines (276 loc) · 6.58 KB
/
docker-compose.phtests.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
version: "3.8"
volumes:
postgres-data: {}
networks:
demo:
name: demo
driver: bridge
services:
postgres:
image: postgres:latest
container_name: postgres
restart: always
networks:
- demo
environment:
POSTGRES_USER: "user"
POSTGRES_PASSWORD: "user"
POSTGRES_DB: mydb1
volumes:
- postgres-data:/var/lib/postgres
# webintegrationtests:
# build:
# context: .
# dockerfile: Dockerfile.WebAppIntegrationTests
# container_name: webintegrationtests
# restart: on-failure
# depends_on:
# - postgres
# environment:
# DATABASE_USERNAME: "user"
# DATABASE_PASSWORD: "user"
# DATABASE_HOST: "postgres"
# DATABASE_TYPE: "postgres"
# DATABASE_SCHEMA: "mydb1"
# STAGE: "test"
# URL_MEDICATION: "medications"
# PORT_MEDICATION: "5007"
# URL_DOCUMENTS: "patientdocuments"
# PORT_DOCUMENTS: "5006"
# PORT_USERS: "5002"
# URL_USERS: "users"
# PORT_APPOINTMENT: "5008"
# URL_APPOINTMENT: "appointment"
# PORT_ROOMS: "5004"
# URL_ROOMS: "rooms"
# expose:
# - "81"
# networks:
# - demo
# volumes:
# - postgres-data:/var/lib/postgres:rw
pharmacyintegrationtests:
build:
context: .
dockerfile: Dockerfile.PhIntegrationTests
container_name: pharmacy_integration_tests
restart: on-failure
depends_on:
- postgres
environment:
DATABASE_USERNAME: "user"
DATABASE_PASSWORD: "user"
DATABASE_HOST: "postgres"
DATABASE_TYPE: "postgres"
DATABASE_SCHEMA: "mydb1"
STAGE: "test"
URL_MEDICATION: "medications"
PORT_MEDICATION: "5007"
URL_DOCUMENTS: "patientdocuments"
PORT_DOCUMENTS: "5006"
URL_PHARMACIES: "pharmacies"
PORT_PHARMACIES: "50202"
expose:
- "80"
networks:
- demo
volumes:
- postgres-data:/var/lib/postgres:rw
feedback:
build:
context: .
dockerfile: Dockerfile.Feedback
container_name: feedback_container
restart: on-failure
networks:
- demo
depends_on:
- postgres
environment:
DATABASE_USERNAME: "user"
DATABASE_PASSWORD: "user"
DATABASE_HOST: "postgres"
DATABASE_TYPE: "postgres"
DATABASE_SCHEMA: "mydb1"
STAGE: "test"
PORT: "5003"
PORT_USERS: "5002"
URL_USERS: "users"
ports:
- "8080:5003"
volumes:
- postgres-data:/var/lib/postgres:rw
pharmacies:
build:
context: .
dockerfile: Dockerfile.Pharmacies
container_name: pharmacy_container
restart: on-failure
networks:
- demo
depends_on:
- postgres
environment:
DATABASE_USERNAME: "user"
DATABASE_PASSWORD: "user"
DATABASE_HOST: "postgres"
DATABASE_TYPE: "postgres"
DATABASE_SCHEMA: "mydb1"
STAGE: "test"
PORT: "50202"
URL_MEDICATION: "medications"
PORT_MEDICATION: "5007"
URL_DOCUMENTS: "patientdocuments"
PORT_DOCUMENTS: "5006"
ports:
- "50202:50202"
volumes:
- postgres-data:/var/lib/postgres:rw
tenders:
build:
context: .
dockerfile: Dockerfile.Tenders
container_name: tenders_container
restart: on-failure
networks:
- demo
depends_on:
- postgres
environment:
DATABASE_USERNAME: "user"
DATABASE_PASSWORD: "user"
DATABASE_HOST: "postgres"
DATABASE_TYPE: "postgres"
DATABASE_SCHEMA: "mydb1"
STAGE: "test"
PORT: "5000"
URL_MEDICATION: "medications"
PORT_MEDICATION: "5007"
URL_DOCUMENTS: "patientdocuments"
PORT_DOCUMENTS: "5006"
URL_PHARMACIES: "pharmacies"
PORT_PHARMACIES: "50202"
ports:
- "49835:5000"
volumes:
- postgres-data:/var/lib/postgres:rw
medications:
build:
context: .
dockerfile: Dockerfile.Medications
container_name: medications_container
restart: on-failure
networks:
- demo
depends_on:
- postgres
environment:
DATABASE_USERNAME: "user"
DATABASE_PASSWORD: "user"
DATABASE_HOST: "postgres"
DATABASE_TYPE: "postgres"
DATABASE_SCHEMA: "mydb1"
STAGE: "test"
PORT: "5007"
ports:
- "56764:5007"
volumes:
- postgres-data:/var/lib/postgres:rw
rooms:
build:
context: .
dockerfile: Dockerfile.Rooms
container_name: rooms_container
restart: on-failure
networks:
- demo
depends_on:
- postgres
environment:
DATABASE_USERNAME: "user"
DATABASE_PASSWORD: "user"
DATABASE_HOST: "postgres"
DATABASE_TYPE: "postgres"
DATABASE_SCHEMA: "mydb1"
STAGE: "test"
PORT: "5004"
PORT_USERS: "5002"
URL_USERS: "users"
ports:
- "60304:5004"
volumes:
- postgres-data:/var/lib/postgres:rw
users:
build:
context: .
dockerfile: Dockerfile.Users
container_name: users_container
restart: on-failure
networks:
- demo
depends_on:
- postgres
environment:
DATABASE_USERNAME: "user"
DATABASE_PASSWORD: "user"
DATABASE_HOST: "postgres"
DATABASE_TYPE: "postgres"
DATABASE_SCHEMA: "mydb1"
STAGE: "test"
PORT: "5002"
PORT_APPOINTMENT: "5008"
URL_APPOINTMENT: "appointment"
ports:
- "8081:5002"
volumes:
- postgres-data:/var/lib/postgres:rw
patientdocuments:
build:
context: .
dockerfile: Dockerfile.PatientDocuments
container_name: documents_container
restart: on-failure
networks:
- demo
depends_on:
- postgres
environment:
DATABASE_USERNAME: "user"
DATABASE_PASSWORD: "user"
DATABASE_HOST: "postgres"
DATABASE_TYPE: "postgres"
DATABASE_SCHEMA: "mydb1"
STAGE: "test"
PORT: "5006"
PORT_USERS: "5002"
URL_USERS: "users"
ports:
- "8088:5006"
volumes:
- postgres-data:/var/lib/postgres:rw
appointment:
build:
context: .
dockerfile: Dockerfile.Appointment
container_name: appointment_container
restart: on-failure
networks:
- demo
depends_on:
- postgres
environment:
DATABASE_USERNAME: "user"
DATABASE_PASSWORD: "user"
DATABASE_HOST: "postgres"
DATABASE_TYPE: "postgres"
DATABASE_SCHEMA: "mydb1"
STAGE: "test"
PORT: "5008"
PORT_ROOMS: "5004"
URL_ROOMS: "rooms"
PORT_USERS: "5002"
URL_USERS: "users"
ports:
- "8083:5008"
volumes:
- postgres-data:/var/lib/postgres:rw