-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.port-configuration.yml
166 lines (147 loc) · 6.61 KB
/
docker-compose.port-configuration.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
# On-Site Version 4.0
version: "3.6"
services:
webcsd:
environment:
- CsdRepository__SearchServiceLocation=http://ccdc-csd-searchservice:${WEBCSD_PORT}/
- CsdRepository__PagedResultLocation=http://ccdc-csd-searchservice:${WEBCSD_PORT}/
- CsdRepository__RequestEntriesServiceLocation=http://csd-request-entry:${WEBCSD_PORT}/
- CsdRepository__ChemicalDiagramImageLocation=http://csd-request-entry:${WEBCSD_PORT}/
- CsdRepository__ChemicalStructureMol2Location=http://csd-request-entry:${WEBCSD_PORT}/
- CsdRepository__AtomEquivalencesLocation=http://csd-request-entry:${WEBCSD_PORT}/
- CsdRepository__FormulaSearchServiceLocation=http://ccdc-csd-searchservice:${WEBCSD_PORT}/
- CsdRepository__StructureSimilaritySearchServiceLocation=http://ccdc-csd-searchservice:${WEBCSD_PORT}/
- CsdRepository__UnitCellSearchLocation=http://ccdc-csd-searchservice:${WEBCSD_PORT}/
- CsdRepository__ServiceLocation=webcsdbackend:${WEBCSD_PORT}
- ASPNETCORE_URLS=http://+:${WEBCSD_PORT}
- CspRepository__ServiceLocation=webcsd-theory:${WEBCSD_PORT}
expose:
- ${WEBCSD_PORT}
healthcheck:
test: "curl --fail --silent --show-error --connect-timeout 5 --max-time 5 http://localhost:${WEBCSD_PORT}/health/ready"
webcsdbackend:
environment:
- ASPNETCORE_URLS=http://+:${WEBCSD_PORT}
expose:
- ${WEBCSD_PORT}
healthcheck:
test: "curl --fail --silent --show-error --connect-timeout 5 --max-time 5 http://localhost:${WEBCSD_PORT}/health/ready"
redis:
expose:
- 6379
database-server:
expose:
- 5432
ccdc-csd-substructuresearch:
environment:
- FingerprintCalculationService=http://ccdc-csd-fingerprint:${WEBCSD_PORT}
- ResultsStoreService=http://ccdc-csd-resultstore:${WEBCSD_PORT}
- DepositionService=http://ccdc-csd-deposition:${WEBCSD_PORT}
- SubstructureFilterService=http://ccdc-csd-substructure-filter:${WEBCSD_PORT}
- ASPNETCORE_URLS=http://+:${WEBCSD_PORT}
expose:
- ${WEBCSD_PORT}
healthcheck:
test: "curl --fail --silent --show-error --connect-timeout 5 --max-time 5 http://localhost:${WEBCSD_PORT}/health/ready"
ccdc-csd-deposition:
environment:
- ASPNETCORE_URLS=http://+:${WEBCSD_PORT}
expose:
- ${WEBCSD_PORT}
healthcheck:
test: "curl --fail --silent --show-error --connect-timeout 5 --max-time 5 http://localhost:${WEBCSD_PORT}/health/ready"
ccdc-csd-textnumericsearch:
environment:
- ASPNETCORE_URLS=http://+:${WEBCSD_PORT}
expose:
- ${WEBCSD_PORT}
healthcheck:
test: "curl --fail --silent --show-error --connect-timeout 5 --max-time 5 http://localhost:${WEBCSD_PORT}/health/ready"
ccdc-csd-searchservice:
environment:
- TextNumericSearchService=http://ccdc-csd-textnumericsearch:${WEBCSD_PORT}/
- SubstructureSearchService=http://ccdc-csd-substructuresearch:${WEBCSD_PORT}/
- QueryIdGeneratorService=http://ccdc-csd-resultstore:${WEBCSD_PORT}/
- PagedResultsService=http://ccdc-csd-resultstore:${WEBCSD_PORT}/
- FormulaSearchService=http://ccdc-csd-formulasearch:${WEBCSD_PORT}/
- StructureSimilaritySearchService=http://ccdc-csd-similaritysearch:${WEBCSD_PORT}/
- UnitCellSearchService=http://ccdc-csd-unitcellsearch:${WEBCSD_PORT}/
- ASPNETCORE_URLS=http://+:${WEBCSD_PORT}
expose:
- ${WEBCSD_PORT}
healthcheck:
test: "curl --fail --silent --show-error --connect-timeout 5 --max-time 5 http://localhost:${WEBCSD_PORT}/health/ready"
csd-request-entry:
environment:
- CrystalStructureExportService=http://ccdc-csd-crystal-structure-export:${WEBCSD_PORT}
- DepositionService=http://ccdc-csd-deposition:${WEBCSD_PORT}
- ASPNETCORE_URLS=http://+:${WEBCSD_PORT}
expose:
- ${WEBCSD_PORT}
healthcheck:
test: "curl --fail --silent --show-error --connect-timeout 5 --max-time 5 http://localhost:${WEBCSD_PORT}/health/ready"
ccdc-csd-formulasearch:
environment:
- ASPNETCORE_URLS=http://+:${WEBCSD_PORT}
expose:
- ${WEBCSD_PORT}
healthcheck:
test: "curl --fail --silent --show-error --connect-timeout 5 --max-time 5 http://localhost:${WEBCSD_PORT}/health/ready"
ccdc-csd-unitcellsearch:
environment:
- UnitCellNiggliReducedCellCalculationService=http://ccdc-csd-reducedcell-calculation-service:${WEBCSD_PORT}
- UnitCellReducedCellCalculationService=http://ccdc-csd-reducedcell-calculation-service:${WEBCSD_PORT}
- ASPNETCORE_URLS=http://+:${WEBCSD_PORT}
expose:
- ${WEBCSD_PORT}
healthcheck:
test: "curl --fail --silent --show-error --connect-timeout 5 --max-time 5 http://localhost:${WEBCSD_PORT}/health/ready"
ccdc-csd-resultstore:
environment:
- ASPNETCORE_URLS=http://+:${WEBCSD_PORT}
expose:
- ${WEBCSD_PORT}
healthcheck:
test: "curl --fail --silent --show-error --connect-timeout 5 --max-time 5 http://localhost:${WEBCSD_PORT}/health/ready"
ccdc-csd-similaritysearch:
environment:
- FingerprintChemicalDiagramCalculationService=http://ccdc-csd-fingerprint:${WEBCSD_PORT}
- ASPNETCORE_URLS=http://+:${WEBCSD_PORT}
expose:
- ${WEBCSD_PORT}
healthcheck:
test: "curl --fail --silent --show-error --connect-timeout 5 --max-time 5 http://localhost:${WEBCSD_PORT}/health/ready"
ccdc-csd-substructure-filter:
environment:
- CCDC_SERVICE_PORT=${WEBCSD_PORT}
expose:
- ${WEBCSD_PORT}
healthcheck:
test: "curl --fail --silent --show-error --connect-timeout 5 --max-time 5 http://localhost:${WEBCSD_PORT}/health/ready"
ccdc-csd-crystal-structure-export:
environment:
- CCDC_SERVICE_PORT=${WEBCSD_PORT}
expose:
- ${WEBCSD_PORT}
healthcheck:
test: "curl --fail --silent --show-error --connect-timeout 5 --max-time 5 http://localhost:${WEBCSD_PORT}/health/ready"
ccdc-csd-reducedcell-calculation-service:
environment:
- CCDC_SERVICE_PORT=${WEBCSD_PORT}
expose:
- ${WEBCSD_PORT}
healthcheck:
test: "curl --fail --silent --show-error --connect-timeout 5 --max-time 5 http://localhost:${WEBCSD_PORT}/health/ready"
ccdc-csd-fingerprint:
environment:
- CCDC_SERVICE_PORT=${WEBCSD_PORT}
expose:
- ${WEBCSD_PORT}
healthcheck:
test: "curl --fail --silent --show-error --connect-timeout 5 --max-time 5 http://localhost:${WEBCSD_PORT}/health/ready"
webcsd-theory:
environment:
- ReportSettings__CspServerUrl=localhost:${WEBCSD_PORT}
- ASPNETCORE_URLS=http://+:${WEBCSD_PORT}
expose:
- ${WEBCSD_PORT}