-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcompose.core.yaml
More file actions
442 lines (407 loc) · 19.3 KB
/
compose.core.yaml
File metadata and controls
442 lines (407 loc) · 19.3 KB
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
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
name: cohort-manager-core
services:
# CaaS Integration Service
retrieve-mesh-file:
container_name: retrieve-mesh-file
network_mode: host
build:
context: ./src/Functions/
dockerfile: CaasIntegration/RetrieveMeshFile/Dockerfile
environment:
- AzureWebJobsStorage=UseDevelopmentStorage=true
- caasfolder_STORAGE=UseDevelopmentStorage=true
- MeshApiBaseUrl=https://localhost:8700/messageexchange
- BSSMailBox="X26ABC1"
- MeshPassword = ${MESHPASSWORD}
- MeshSharedKey = ${MESHSHAREDKEY}
- MeshKeyPassphrase = ${MESHKEYPASSPHRASE}
- ASPNETCORE_URLS=http://*:7059
receive-caas-file:
container_name: receive-caas-file
network_mode: host
build:
context: ./src/Functions/
dockerfile: CaasIntegration/receiveCaasFile/Dockerfile
environment:
- AzureWebJobsStorage=UseDevelopmentStorage=true
- caasfolder_STORAGE=UseDevelopmentStorage=true
- ASPNETCORE_URLS=http://*:7060
- targetFunction=http://localhost:7061/api/processCaasFile
- FileValidationURL=http://localhost:7073/api/FileValidation
- PMSAddParticipant=http://localhost:7062/api/addParticipant
- PMSRemoveParticipant=http://localhost:7063/api/RemoveParticipant
- PMSUpdateParticipant=http://localhost:7065/api/updateParticipant
- ExceptionFunctionURL=http://localhost:7070/api/CreateException
- StaticValidationURL=http://localhost:7074/api/StaticValidation
- DemographicDataServiceURL=http://localhost:7993/api/ParticipantDemographicDataService
- DemographicURI=http://localhost:7079/api/DurableDemographicFunction_HttpStart
- GetOrchestrationStatusURL=http://localhost:7079/api/GetOrchestrationStatus
- AllowDeleteRecords=true
- AddQueueName=add-participant-queue
- BatchSize=3500
- DtOsDatabaseConnectionString=Server=localhost,1433;Database=${DB_NAME};User Id=SA;Password=${PASSWORD};TrustServerCertificate=True
- AddQueueName=add-participant-queue
- recordThresholdForBatching=3
- batchDivisionFactor=5
- UpdateQueueName=update-participant-queue
- ScreeningLkpDataServiceURL=http://localhost:8996/api/ScreeningLkpDataService
# Participant Management Service
add-participant:
container_name: add-participant
network_mode: host
build:
context: ./src/Functions/
dockerfile: ParticipantManagementServices/addParticipant/Dockerfile
environment:
- ASPNETCORE_URLS=http://*:7062
- AzureWebJobsStorage=UseDevelopmentStorage=true
- DSaddParticipant=http://localhost:7066/api/CreateParticipant
- DSmarkParticipantAsEligible=http://localhost:7067/api/markParticipantAsEligible
- DemographicURIGet=http://localhost:7076/api/DemographicDataFunction
- StaticValidationURL=http://localhost:7074/api/StaticValidation
- ExceptionFunctionURL=http://localhost:7070/api/CreateException
- CohortDistributionServiceURL=http://localhost:7082/api/CreateCohortDistribution
- CohortQueueName=cohort-distribution-queue
- AddQueueName=add-participant-queue
remove-participant:
container_name: remove-participant
network_mode: host
build:
context: ./src/Functions/
dockerfile: ParticipantManagementServices/RemoveParticipant/Dockerfile
environment:
- ASPNETCORE_URLS=http://*:7063
- AzureWebJobsStorage=UseDevelopmentStorage=true
- markParticipantAsIneligible=http://localhost:7068/api/markParticipantAsIneligible
- ExceptionFunctionURL=http://localhost:7070/api/CreateException
- DemographicURIGet=http://localhost:7076/api/DemographicDataFunction
- RemoveCohortDistributionURL=http://localhost:7079/api/RemoveCohortDistributionData
- CohortQueueName=cohort-distribution-queue
update-participant:
container_name: update-participant
network_mode: host
build:
context: ./src/Functions/
dockerfile: ParticipantManagementServices/updateParticipant/Dockerfile
environment:
- ASPNETCORE_URLS=http://*:7065
- AzureWebJobsStorage=UseDevelopmentStorage=true
- UpdateParticipant=http://localhost:7069/api/updateParticipantDetails
- StaticValidationURL=http://localhost:7074/api/StaticValidation
- DemographicURIGet=http://localhost:7076/api/DemographicDataFunction
- ExceptionFunctionURL=http://localhost:7070/api/CreateException
- DSmarkParticipantAsEligible=http://localhost:7067/api/markParticipantAsEligible
- markParticipantAsIneligible=http://localhost:7068/api/markParticipantAsIneligible
- CohortDistributionServiceURL=http://localhost:7082/api/CreateCohortDistribution
- CohortQueueName=cohort-distribution-queue
- UpdateQueueName=update-participant-queue
update-participant-from-screening-provider:
container_name: update-participant-from-screening-provider
network_mode: host
build:
context: ./src/Functions/
dockerfile: ParticipantManagementServices/UpdateParticipantFromScreeningProvider/Dockerfile
profiles: [bi-analytics]
environment:
- ASPNETCORE_URLS=http://*:8001
- ParticipantManagementUrl=http://127.0.0.1:7994/api/ParticipantManagementDataService
- GeneCodeLkpUrl=http://localhost:7991/api/GeneCodeLkpDataService
- HigherRiskReferralReasonLkpUrl=http://localhost:7992/api/HigherRiskReferralReasonLkpDataService
- topicEndpoint=${EVENTGRID_URL}
- topicKey=${EVENTGRID_KEY}
- ExceptionFunctionURL=http://localhost:7070/api/CreateException
check-participant-exists:
container_name: check-participant-exists
network_mode: host
build:
context: ./src/Functions/
dockerfile: ParticipantManagementServices/CheckParticipantExists/Dockerfile
profiles: [bi-analytics]
environment:
- ASPNETCORE_URLS=http://*:8002
- ParticipantManagementUrl=http://localhost:7994/api/ParticipantManagementDataService
get-participant-reference-data:
container_name: get-participant-reference-data
network_mode: host
build:
context: ./src/Functions/
dockerfile: ParticipantManagementServices/GetParticipantReferenceData/Dockerfile
profiles: [bi-analytics]
environment:
- ASPNETCORE_URLS=http://*:7999
- HigherRiskReferralReasonLkpDataServiceUrl=http://localhost:7992/api/HigherRiskReferralReasonLkpDataService
- GeneCodeLkpDataServiceUrl=http://localhost:7991/api/GeneCodeLkpDataService
# Screening Data Service
create-participant:
container_name: create-participant
network_mode: host
build:
context: ./src/Functions/
dockerfile: screeningDataServices/createParticipant/Dockerfile
environment:
- ASPNETCORE_URLS=http://*:7066
- FUNCTIONS_WORKER_RUNTIME=dotnet-isolated
- DtOsDatabaseConnectionString=Server=localhost,1433;Database=${DB_NAME};User Id=SA;Password=${PASSWORD};TrustServerCertificate=True
- LookupValidationURL=http://localhost:7075/api/LookupValidation
- ExceptionFunctionURL=http://localhost:7070/api/CreateException
- ParticipantManagementUrl=http://localhost:7994/api/ParticipantManagementDataService
- AzureWebJobsStorage=UseDevelopmentStorage=true
mark-participant-as-eligible:
container_name: mark-participant-as-eligible
network_mode: host
build:
context: ./src/Functions/
dockerfile: screeningDataServices/markParticipantAsEligible/Dockerfile
environment:
- ASPNETCORE_URLS=http://*:7067
- DtOsDatabaseConnectionString=Server=localhost,1433;Database=${DB_NAME};User Id=SA;Password=${PASSWORD};TrustServerCertificate=True
- ExceptionFunctionURL=http://localhost:7070/api/CreateException,
- ParticipantManagementUrl=http://localhost:7994/api/ParticipantManagementDataService
mark-participant-as-ineligible:
container_name: mark-participant-as-ineligible
network_mode: host
build:
context: ./src/Functions/
dockerfile: screeningDataServices/markParticipantAsIneligible/Dockerfile
environment:
- AzureWebJobsStorage=UseDevelopmentStorage=true
- ASPNETCORE_URLS=http://*:7068
- DtOsDatabaseConnectionString=Server=localhost,1433;Database=${DB_NAME};User Id=SA;Password=${PASSWORD};TrustServerCertificate=True
- LookupValidationURL=http://localhost:7075/api/LookupValidation
- StaticValidationURL=http://localhost:7074/api/StaticValidation
- ExceptionFunctionURL=http://localhost:7070/api/CreateException
- FUNCTIONS_WORKER_RUNTIME=dotnet-isolated
- ParticipantManagementUrl=http://localhost:7994/api/ParticipantManagementDataService
update-participant-details:
container_name: update-participant-details
network_mode: host
build:
context: ./src/Functions/
dockerfile: screeningDataServices/updateParticipantDetails/Dockerfile
environment:
- ASPNETCORE_URLS=http://*:7069
- DtOsDatabaseConnectionString=Server=localhost,1433;Database=${DB_NAME};User Id=SA;Password=${PASSWORD};TrustServerCertificate=True
- LookupValidationURL=http://localhost:7075/api/LookupValidation
- ExceptionFunctionURL=http://localhost:7070/api/CreateException
- ParticipantManagementUrl=http://localhost:7994/api/ParticipantManagementDataService
create-exception:
container_name: create-exception
network_mode: host
build:
context: ./src/Functions/
dockerfile: ExceptionHandling/CreateException/Dockerfile
environment:
- ASPNETCORE_URLS=http://*:7070
- DtOsDatabaseConnectionString=Server=localhost,1433;Database=${DB_NAME};User Id=SA;Password=${PASSWORD};TrustServerCertificate=True
- DemographicDataServiceURL=http://localhost:7993/api/ParticipantDemographicDataService/
- ExceptionManagementDataServiceURL=http://localhost:7911/api/ExceptionManagementDataService/
- GPPracticeDataServiceURL=http://localhost:7999/api/GPPracticeDataService/
get-validation-exceptions:
container_name: get-validation-exceptions
network_mode: host
build:
context: ./src/Functions/
dockerfile: screeningDataServices/GetValidationExceptions/Dockerfile
environment:
- ASPNETCORE_URLS=http://*:7071
- DtOsDatabaseConnectionString=Server=localhost,1433;Database=${DB_NAME};User Id=SA;Password=${PASSWORD};TrustServerCertificate=True
- DemographicDataServiceURL=http://localhost:7993/api/ParticipantDemographicDataService/
- ExceptionManagementDataServiceURL=http://localhost:7911/api/ExceptionManagementDataService/
- GPPracticeDataServiceURL=http://localhost:7999/api/GPPracticeDataService/
# Data Services
bs-select-gp-practice-data-service:
container_name: bs-select-gp-practice-data-service
network_mode: host
build:
context: ./src/Functions/
dockerfile: screeningDataServices/BsSelectGpPractice/Dockerfile
environment:
- ASPNETCORE_URLS=http://*:7998
- DtOsDatabaseConnectionString=Server=localhost,1433;Database=${DB_NAME};User Id=SA;Password=${PASSWORD};TrustServerCertificate=True
bs-select-outcode-data-service:
container_name: bs-select-outcode-data-service
network_mode: host
build:
context: ./src/Functions/
dockerfile: screeningDataServices/BsSelectOutCode/Dockerfile
environment:
- ASPNETCORE_URLS=http://*:7881
- DtOsDatabaseConnectionString=Server=localhost,1433;Database=${DB_NAME};User Id=SA;Password=${PASSWORD};TrustServerCertificate=True
language-code-data-service:
container_name: language-code-data-service
network_mode: host
build:
context: ./src/Functions/
dockerfile: screeningDataServices/LanguageCodesDataService/Dockerfile
environment:
- ASPNETCORE_URLS=http://*:7997
- DtOsDatabaseConnectionString=Server=localhost,1433;Database=${DB_NAME};User Id=SA;Password=${PASSWORD};TrustServerCertificate=True
current-posting-data-service:
container_name: current-posting-data-service
network_mode: host
build:
context: ./src/Functions/
dockerfile: screeningDataServices/CurrentPostingDataService/Dockerfile
environment:
- ASPNETCORE_URLS=http://*:7996
- DtOsDatabaseConnectionString=Server=localhost,1433;Database=${DB_NAME};User Id=SA;Password=${PASSWORD};TrustServerCertificate=True
excluded-smu-data-service:
container_name: excluded-smu-data-service
network_mode: host
build:
context: ./src/Functions/
dockerfile: screeningDataServices/ExcludedSMULookupDataService/Dockerfile
environment:
- ASPNETCORE_URLS=http://*:7995
- DtOsDatabaseConnectionString=Server=localhost,1433;Database=${DB_NAME};User Id=SA;Password=${PASSWORD};TrustServerCertificate=True
gene-code-lkp-data-service:
container_name: gene-code-lkp-data-service
network_mode: host
profiles: [bi-analytics]
build:
context: ./src/Functions/
dockerfile: screeningDataServices/GeneCodeLkpDataService/Dockerfile
environment:
- ASPNETCORE_URLS=http://*:7991
- DtOsDatabaseConnectionString=Server=localhost,1433;Database=${DB_NAME};User Id=SA;Password=${PASSWORD};TrustServerCertificate=True
higher-risk-referral-reason-lkp-data-service:
container_name: higher-risk-referral-reason-lkp-data-service
network_mode: host
build:
context: ./src/Functions/
dockerfile: screeningDataServices/HigherRiskReferralReasonLkpDataService/Dockerfile
profiles: [bi-analytics]
environment:
- ASPNETCORE_URLS=http://*:7992
- DtOsDatabaseConnectionString=Server=localhost,1433;Database=${DB_NAME};User Id=SA;Password=${PASSWORD};TrustServerCertificate=True
participant-demographic-data-service:
container_name: participant-demographic-data-service
network_mode: host
build:
context: ./src/Functions/
dockerfile: screeningDataServices/ParticipantDemographicDataService/Dockerfile
environment:
- ASPNETCORE_URLS=http://*:7993
- DtOsDatabaseConnectionString=Server=localhost,1433;Database=${DB_NAME};User Id=SA;Password=${PASSWORD};TrustServerCertificate=True
participant-management-data-service:
container_name: participant-management-data-service
network_mode: host
build:
context: ./src/Functions/
dockerfile: screeningDataServices/ParticipantManagementDataService/Dockerfile
environment:
- ASPNETCORE_URLS=http://*:7994
- DtOsDatabaseConnectionString=Server=localhost,1433;Database=${DB_NAME};User Id=SA;Password=${PASSWORD};TrustServerCertificate=True
# Screening Validation Service
file-validation:
container_name: file-validation
network_mode: host
build:
context: ./src/Functions/
dockerfile: ScreeningValidationService/FileValidation/Dockerfile
environment:
- ASPNETCORE_URLS=http://*:7073
- ExceptionFunctionURL=http://localhost:7070/api/CreateException
- inboundBlobName=inbound
- caasfolder_STORAGE=UseDevelopmentStorage=true
- AzureWebJobsStorage=UseDevelopmentStorage=true
- fileExceptions=file-exceptions
static-validation:
container_name: static-validation
network_mode: host
build:
context: ./src/Functions/
dockerfile: ScreeningValidationService/StaticValidation/Dockerfile
environment:
- ASPNETCORE_URLS=http://*:7074
- CreateValidationExceptionURL=http://localhost:7070/api/CreateValidationException
- BlobContainerName=rules
- AzureWebJobsStorage=UseDevelopmentStorage=true
- ExceptionFunctionURL=http://localhost:7070/api/CreateException
- RemoveOldValidationRecord=http://localhost:7085/api/RemoveValidationExceptionData
lookup-validation:
container_name: lookup-validation
network_mode: host
build:
context: ./src/Functions/
dockerfile: ScreeningValidationService/LookupValidation/Dockerfile
environment:
- ASPNETCORE_URLS=http://*:7075
- ExceptionFunctionURL=http://localhost:7070/api/CreateException
- BsSelectGpPracticeUrl=http://localhost:7998/api/BsSelectGpPracticeDataService
- BsSelectOutCodeUrl=http://localhost:7881/api/BsSelectOutCodeDataService
- LanguageCodeUrl=http://localhost:7997/api/LanguageCodeDataService
- CurrentPostingUrl=http://localhost:7996/api/CurrentPostingDataService
- ExcludedSMULookupUrl=http://localhost:7995/api/ExcludedSMUDataService
- BlobContainerName=rules
- AzureWebJobsStorage=UseDevelopmentStorage=true
- DtOsDatabaseConnectionString=Server=localhost,1433;Database=${DB_NAME};User Id=SA;Password=${PASSWORD};TrustServerCertificate=True
# Demographic Services
demographic-data-management:
container_name: demographic-data-management
network_mode: host
build:
context: ./src/Functions/
dockerfile: DemographicServices/DemographicDataManagementFunction/Dockerfile
environment:
- ASPNETCORE_URLS=http://*:7076
- DemographicDataServiceURI=http://localhost:7072/api/DemographicDataService
- ExceptionFunctionURL=http://localhost:7070/api/CreateException
- ParticipantDemographicDataServiceURL=http://localhost:7993/api/ParticipantDemographicDataService
durable-demographic-function:
container_name: durable-demographic-function
network_mode: host
build:
context: ./src/Functions/
dockerfile: DemographicServices/DemographicDurableFunction/Dockerfile
environment:
- ASPNETCORE_URLS=http://*:7079
- WEBSITE_HOSTNAME=localhost:7079
- DtOsDatabaseConnectionString=Server=localhost,1433;Database=${DB_NAME};User Id=SA;Password=${PASSWORD};TrustServerCertificate=True
- DemographicDataServiceURL=http://localhost:7993/api/ParticipantDemographicDataService
- ExceptionFunctionURL=http://localhost:7070/api/CreateException
- AzureWebJobsStorage=UseDevelopmentStorage=true
gppractice-data-service:
container_name: gppractice-data-service
network_mode: host
build:
context: ./src/Functions/
dockerfile: screeningDataServices/GPPractice/Dockerfile
environment:
- ASPNETCORE_URLS=http://*:7910
- DtOsDatabaseConnectionString=Server=localhost,1433;Database=${DB_NAME};User Id=SA;Password=${PASSWORD};TrustServerCertificate=True
exception-management-data-service:
container_name: exception-management-data-service
network_mode: host
build:
context: ./src/Functions/
dockerfile: screeningDataServices/ExceptionManagementDataService/Dockerfile
environment:
- ASPNETCORE_URLS=http://*:7911
- DtOsDatabaseConnectionString=Server=localhost,1433;Database=${DB_NAME};User Id=SA;Password=${PASSWORD};TrustServerCertificate=True
bs-request-audit-data-service:
container_name: bs-request-audit-data-service
network_mode: host
build:
context: ./src/Functions/
dockerfile: screeningDataServices/BsSelectRequestAudit/Dockerfile
environment:
- ASPNETCORE_URLS=http://*:7989
- DtOsDatabaseConnectionString=Server=localhost,1433;Database=${DB_NAME};User Id=SA;Password=${PASSWORD};TrustServerCertificate=True
screening-lkp-data-service:
container_name: screening-lkp-data-service
network_mode: host
build:
context: ./src/Functions/
dockerfile: screeningDataServices/ScreeningLkpDataService/Dockerfile
environment:
- ASPNETCORE_URLS=http://*:8996
- DtOsDatabaseConnectionString=Server=localhost,1433;Database=${DB_NAME};User Id=SA;Password=${PASSWORD};TrustServerCertificate=True
receive-service-now-message:
container_name: receive-service-now-message
network_mode: host
build:
context: ./src/Functions/
dockerfile: ServiceNowIntegrationService/Dockerfile
environment:
- ASPNETCORE_URLS=http://*:7912