-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathdocker-compose.yml
476 lines (449 loc) · 9.91 KB
/
docker-compose.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
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
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
version: "2.1"
services:
apigateway:
image: zuul-service
build: zuul-gatewayservice/
restart: always
network_mode: host
depends_on:
- eurekaserver
ports:
- 8092:8092
- 8001-8001
expose:
- 8092
- 8001
healthcheck:
test: "exit 0"
eurekaserver:
image: eureka-servcie:latest
build: eureka-server/
restart: always
network_mode: host
ports:
- 9091:9091
expose:
- 9091
healthcheck:
test: "exit 0"
configserver:
image: config-service:latest
build: config-server/
restart: always
network_mode: host
ports:
- 8888:8888
expose:
- 8888
healthcheck:
test: "exit 0"
mysqldb:
image: mysql:5.7
restart: always
container_name: mysql-container
network_mode: "host"
hostname: localhost
environment:
MYSQL_ROOT_PASSWORD: root123
MYSQL_DATABASE: LoginDB
MYSQL_PASSWORD: root123
ports:
- 3306:3306
healthcheck:
test: "exit 0"
mongodb:
image: mongo
restart: always
ports:
- "27017:27017"
container_name: mongo
network_mode: "host"
hostname: localhost
healthcheck:
test: "exit 0"
neo4j:
image: neo4j:3.0
container_name: neo4j
network_mode: host
hostname: localhost
ports:
- "7474:7474"
- "7687:7687"
volumes:
- $PWD/plugins:/plugins
- $PWD/import:/import
- $PWD/data1:/var/lib/neo4j/data
- $PWD/logs1:/var/lib/neo4j/logs
- $PWD/conf:/var/lib/neo4j/conf
environment:
- NEO4J_AUTH=neo4j/neo4j@123
healthcheck:
test: "exit 0"
redis:
image: redis
container_name: redis
network_mode: host
hostname: localhost
ports:
- "6379:6379"
volumes:
- /DB/redis:/usr/local/etc/redis/redis.conf
entrypoint: redis-server --appendonly yes
healthcheck:
test: "exit 0"
loginservice:
image: login-service:latest
build: login-service/
restart: always
network_mode: "host"
hostname: localhost
depends_on:
mysqldb:
condition: service_healthy
eurekaserver:
condition: service_healthy
ports:
- 8084:8084
expose:
- 8084
healthcheck:
test: "exit 0"
angular-app:
build: angular-frontend/
image: angular-frontend
restart: always
mem_limit: 1024m
container_name: Angular
network_mode: "host"
hostname: localhost
depends_on:
websocket-service:
condition: service_healthy
ports:
- 8079:8079
expose:
- 8079
healthcheck:
test: "exit 0"
zookeeper:
image: landoop/fast-data-dev
ports:
- "2181:2181"
mem_limit: 1024m
environment:
- "JAVA_OPTS=-XX:+UnlockExperimentalVMOptions"
- "JAVA_OPTS=-XX:+UseCGroupMemoryLimitForHeap"
network_mode: "host"
container_name: zookeeper
hostname: localhost
restart: always
healthcheck:
test: "exit 0"
kafka:
image: landoop/fast-data-dev
ports:
- "9092:9092"
container_name: kafka
mem_limit: 1500m
environment:
JAVA_OPTS: "-XX:+UnlockExperimentalVMOptions
-XX:+UseCGroupMemoryLimitForHeap"
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://localhost:9092
KAFKA_LISTENERS: PLAINTEXT://localhost:9092
KAFKA_ZOOKEEPER_CONNECT: localhost:2181
KAFKA_CREATE_TOPICS: "FileUrl:1:1, FileText:1:1, ParagraphContents:1:1,AnalyticsResults:1:1,UpstreamResults:1:1,NLPResults:1:1,
QueryEngineResults:1:1,WebContentExtractor:1:1,WebSearch:1:1,WebAnalyticsResults:1:1"
network_mode: "host"
hostname: localhost
depends_on:
- zookeeper
restart: always
healthcheck:
test: "exit 0"
document-provider:
image: document-provider:latest
build: document-provider/
restart: always
network_mode: "host"
hostname: localhost
depends_on:
zookeeper:
condition: service_healthy
kafka:
condition: service_healthy
ports:
- 8087:8087
expose:
- 8087
healthcheck:
test: "exit 0"
content-extractor:
image: content-extractor:latest
build: content-extractor/
restart: always
network_mode: "host"
hostname: localhost
depends_on:
zookeeper:
condition: service_healthy
kafka:
condition: service_healthy
document-provider:
condition: service_healthy
ports:
- 8086:8086
expose:
- 8086
healthcheck:
test: "exit 0"
paragraph-tokenizer:
image: paragraph-tokenizer:latest
build: paragraph-tokenizer/
restart: always
network_mode: "host"
hostname: localhost
depends_on:
zookeeper:
condition: service_healthy
kafka:
condition: service_healthy
content-extractor:
condition: service_healthy
ports:
- 8090:8090
expose:
- 8090
healthcheck:
test: "exit 0"
analytic-server:
image: analytic-server:latest
build: analytic-server/
restart: always
network_mode: "host"
hostname: localhost
depends_on:
zookeeper:
condition: service_healthy
kafka:
condition: service_healthy
neo4j:
condition: service_healthy
paragraph-tokenizer:
condition: service_healthy
ports:
- 8085:8085
expose:
- 8085
healthcheck:
test: "exit 0"
search-upstream-service:
image: search-upstream-service:latest
build: search-upstream-service/
restart: always
network_mode: "host"
hostname: localhost
ports:
- 8094:8094
depends_on:
mongodb:
condition: service_healthy
zookeeper:
condition: service_healthy
kafka:
condition: service_healthy
expose:
- 8094
healthcheck:
test: "exit 0"
knowledge-indexer:
image: knowledge-indexer:latest
build: knowledge-indexer/
restart: always
network_mode: "host"
hostname: localhost
depends_on:
zookeeper:
condition: service_healthy
kafka:
condition: service_healthy
neo4j:
condition: service_healthy
analytic-server:
condition: service_healthy
ports:
- 8088:8088
expose:
- 8088
healthcheck:
test: "exit 0"
nlp-service:
image: nlp-service:latest
build: nlp-service/
restart: always
network_mode: "host"
hostname: localhost
depends_on:
zookeeper:
condition: service_healthy
kafka:
condition: service_healthy
neo4j:
condition: service_healthy
search-upstream-service:
condition: service_healthy
ports:
- 8089:8089
expose:
- 8089
healthcheck:
test: "exit 0"
query-engine:
image: query-engine:latest
build: query-engine/
restart: always
network_mode: "host"
hostname: localhost
depends_on:
zookeeper:
condition: service_healthy
kafka:
condition: service_healthy
neo4j:
condition: service_healthy
nlp-service:
condition: service_healthy
redis:
condition: service_healthy
ports:
- 8096:8096
expose:
- 8096
healthcheck:
test: "exit 0"
websocket-service:
image: websocket-service:latest
build: websocket-service/
restart: always
network_mode: "host"
hostname: localhost
depends_on:
zookeeper:
condition: service_healthy
kafka:
condition: service_healthy
nlp-service:
condition: service_healthy
redis:
condition: service_healthy
ports:
- 8097:8097
- 8070:8070
expose:
- 8097
- 8070
healthcheck:
test: "exit 0"
question-provider:
image: question-provider:latest
build: question-provider/
restart: always
network_mode: "host"
hostname: localhost
depends_on:
zookeeper:
condition: service_healthy
kafka:
condition: service_healthy
mongodb:
condition: service_healthy
nlp-service:
condition: service_healthy
ports:
- 8095:8095
expose:
- 8095
healthcheck:
test: "exit 0"
question-publisher:
image: question-publisher:latest
build: question-publisher/
restart: always
network_mode: "host"
hostname: localhost
depends_on:
mongodb:
condition: service_healthy
neo4j:
condition: service_healthy
ports:
- 8077:8077
expose:
- 8077
healthcheck:
test: "exit 0"
web-search-service:
image: web-search-service:latest
build: web-search-service/
restart: always
network_mode: "host"
hostname: localhost
depends_on:
kafka:
condition: service_healthy
ports:
- 8099:8099
expose:
- 8099
healthcheck:
test: "exit 0"
web-content-extractor:
image: web-content-extractor:latest
build: web-content-extractor/
restart: always
network_mode: "host"
hostname: localhost
depends_on:
kafka:
condition: service_healthy
web-search-service:
condition: service_healthy
ports:
- 8111:8111
expose:
- 8111
healthcheck:
test: "exit 0"
web-analytic-service:
image: web-analytic-service:latest
build: web-analytic-service/
restart: always
network_mode: "host"
hostname: localhost
depends_on:
kafka:
condition: service_healthy
neo4j:
condition: service_healthy
web-content-extractor:
condition: service_healthy
ports:
- 8098:8098
expose:
- 8098
healthcheck:
test: "exit 0"
ontology-management-service:
image: ontology-management-service:latest
build: ontology-management-service/
restart: always
network_mode: "host"
hostname: localhost
depends_on:
neo4j:
condition: service_healthy
ports:
- 8071:8071
expose:
- 8071
healthcheck:
test: "exit 0"