-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
executable file
·691 lines (659 loc) · 19.4 KB
/
docker-compose.yaml
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
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
version: "3"
services:
#--------------
# CORE SERVICES
#--------------
zookeeper:
image: acss/zookeeper:3.7.0
container_name: zookeeper
hostname: zookeeper
ports:
- "2181:2181"
profiles:
- core
networks:
- pipenetwork
kafka_1:
image: acss/kafka-broker:1.0.0
container_name: kafka_1
hostname: kafka_1
depends_on:
- zookeeper
ports:
- "9094:9094"
environment:
KAFKA_BROKER_ID: 1
KAFKA_ADVERTISED_LISTENERS: INSIDE://kafka_1:9092,OUTSIDE://${ACSS_EXTERNAL_HOST_ADDR}:9094
KAFKA_LISTENERS: INSIDE://kafka_1:9092,OUTSIDE://kafka_1:9094
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: INSIDE:PLAINTEXT,OUTSIDE:PLAINTEXT
KAFKA_INTER_BROKER_LISTENER_NAME: INSIDE
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
KAFKA_AUTO_CREATE_TOPICS_ENABLE: 'false'
KAFKA_REPLICA_FETCH_MAX_BYTES: 52428800
KAFKA_MESSAGE_MAX_BYTES: 52428800
volumes:
- /var/run/docker.sock:/var/run/docker.sock
profiles:
- core
networks:
- pipenetwork
kafka_2:
image: acss/kafka-broker:1.0.0
container_name: kafka_2
hostname: kafka_2
depends_on:
- zookeeper
ports:
- "9096:9096"
- "29096:29096"
environment:
KAFKA_BROKER_ID: 2
KAFKA_ADVERTISED_LISTENERS: INSIDE://kafka_2:9092,OUTSIDE://${ACSS_EXTERNAL_HOST_ADDR}:9096
KAFKA_LISTENERS: INSIDE://kafka_2:9092,OUTSIDE://kafka_2:9096
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: INSIDE:PLAINTEXT,OUTSIDE:PLAINTEXT
KAFKA_INTER_BROKER_LISTENER_NAME: INSIDE
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
KAFKA_AUTO_CREATE_TOPICS_ENABLE: 'false'
KAFKA_REPLICA_FETCH_MAX_BYTES: 52428800
KAFKA_MESSAGE_MAX_BYTES: 52428800
volumes:
- /var/run/docker.sock:/var/run/docker.sock
profiles:
- core
networks:
- pipenetwork
create_topics_job:
build:
context: ${PATH_TO_ACSS_CORE_ROOT}/services/scripts
dockerfile: ${PATH_TO_ACSS_CORE_ROOT}/docker/acss_service.Dockerfile
container_name: create_topics_job
hostname: create_topics_job
# depends_on:
# - kafka_1
# - kafka_2
# - logstash
environment:
PYTHONPATH: /pipe
ACSS_CONFIG_FILEPATH: /pipe/acss-config.yaml
volumes:
- "/tmp/:/tmp/"
- "${ACSS_CONFIG_FILEPATH}:/pipe/acss-config.yaml"
entrypoint:
- /pipe/.venv/bin/python
- /pipe/create_topics.py
profiles:
- core-service
networks:
- pipenetwork
http_proxy:
build:
context: ${PATH_TO_ACSS_CORE_ROOT}
dockerfile: ${PATH_TO_ACSS_CORE_ROOT}/docker/http_iface.Dockerfile
image: acss/http-proxy-service
container_name: http_proxy
hostname: http_proxy
depends_on:
- create_topics_job
- register_frontend
# - kafka_1
# - kafka_2
ports:
- 5002:5002
environment:
PYTHONPATH: /pipe:/pipe/acss_service/
ACSS_CONFIG_FILEPATH: /pipe/acss-config.yaml
ACSS_CONFIG_FILEPATH_HOST: ${ACSS_CONFIG_FILEPATH}
PATH_TO_ACSS_SERVICES_ROOT: ${PATH_TO_ACSS_SERVICES_ROOT} #needed because http_proxy can start services
profiles:
- core-service
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- "${ACSS_CONFIG_FILEPATH}:/pipe/acss-config.yaml"
- "${PATH_TO_ACSS_SERVICES_ROOT}/:/pipe/acss_service/"
networks:
- pipenetwork
working_dir: /pipe/acss_service/
entrypoint:
- /pipe/.venv/bin/python
- /pipe/services/console/http_server.py
observer_frontend:
build:
context: ${PATH_TO_ACSS_CORE_ROOT}/services/observer/frontend
dockerfile: ${PATH_TO_ACSS_CORE_ROOT}/docker/acss_service.Dockerfile
image: acss/observer-frontend-service
container_name: observer_frontend
hostname: observer_frontend
depends_on:
- observer_database
# - logstash
ports:
- 5003:5003
environment:
PYTHONPATH: /pipe
ACSS_CONFIG_FILEPATH: /pipe/acss-config.yaml
PATH_TO_ACSS_SERVICES_ROOT: "/pipe/acss_service/"
volumes:
- "${ACSS_CONFIG_FILEPATH}:/pipe/acss-config.yaml"
profiles:
- core-service
networks:
- pipenetwork
entrypoint:
- /pipe/.venv/bin/python
- /pipe/observer_frontend.py
observer_backend:
build:
context: ${PATH_TO_ACSS_CORE_ROOT}/services/observer/backend
dockerfile: ${PATH_TO_ACSS_CORE_ROOT}/docker/acss_service.Dockerfile
image: acss/observer-backend-service
container_name: observer_backend
hostname: observer_backend
depends_on:
- create_topics_job
- register_frontend
- observer_database
environment:
PYTHONPATH: /pipe
ACSS_CONFIG_FILEPATH: /pipe/acss-config.yaml
PATH_TO_ACSS_SERVICES_ROOT: "/pipe/acss_service/"
volumes:
- "${ACSS_CONFIG_FILEPATH}:/pipe/acss-config.yaml"
entrypoint:
- /pipe/.venv/bin/python
- /pipe/observer.py
profiles:
- core-service
networks:
- pipenetwork
observer_database:
image: mongo
container_name: observer_database
hostname: observer_database
restart: always
# ports:
# - 27017:27017
environment:
MONGO_INITDB_ROOT_USERNAME: ${ACSS_DB_USER}
MONGO_INITDB_ROOT_PASSWORD: ${ACSS_DB_PW}
profiles:
- core-service
networks:
- pipenetwork
register_frontend:
build:
context: ${PATH_TO_ACSS_CORE_ROOT}/services/register/frontend
dockerfile: ${PATH_TO_ACSS_CORE_ROOT}/docker/acss_service.Dockerfile
image: regsiter-frontend-service
container_name: register_frontend
hostname: register_frontend
depends_on:
- create_topics_job
- register_database
ports:
- 5004:5004
environment:
PYTHONPATH: /pipe
ACSS_CONFIG_FILEPATH: /pipe/acss-config.yaml
volumes:
- "${ACSS_CONFIG_FILEPATH}:/pipe/acss-config.yaml"
profiles:
- core-service
networks:
- pipenetwork
entrypoint:
- /pipe/.venv/bin/python
- /pipe/register_frontend.py
register_backend:
build:
context: ${PATH_TO_ACSS_CORE_ROOT}/services/register/backend
dockerfile: ${PATH_TO_ACSS_CORE_ROOT}/docker/acss_service.Dockerfile
image: acss/register-backend-service
container_name: register_backend
hostname: register_backend
depends_on:
- create_topics_job
- register_frontend
- register_database
environment:
PYTHONPATH: /pipe
ACSS_CONFIG_FILEPATH: /pipe/acss-config.yaml
volumes:
- "${ACSS_CONFIG_FILEPATH}:/pipe/acss-config.yaml"
entrypoint:
- /pipe/.venv/bin/python
- /pipe/register_service.py
profiles:
- core-service
networks:
- pipenetwork
register_database:
image: mariadb
container_name: register_database
hostname: register_database
restart: always
profiles:
- core-service
environment:
MYSQL_ROOT_PASSWORD: ${ACSS_DB_PW}
MYSQL_DATABASE: services
networks:
- pipenetwork
react-app:
build:
context: .
dockerfile: ./docker/react.Dockerfile
profiles:
- core
ports:
- "8080:80"
networks:
- pipenetwork
#--------------
# AGENTS
#--------------
orb_cor_agent:
build:
context: ${PATH_TO_ACSS_SERVICES_ROOT}/agents/orbit
dockerfile: ${PATH_TO_ACSS_CORE_ROOT}/docker/acss_service.Dockerfile
image: acss/orb-cor-agent-service
container_name: orb_cor_agent
hostname: orb_cor_agent
environment:
PYTHONPATH: /pipe:/pipe/acss_service/
ACSS_CONFIG_FILEPATH: /pipe/acss-config.yaml
PATH_TO_ACSS_SERVICES_ROOT: "/pipe/acss_service/"
SERVICE_NAME: "orbit_corr_agent" # default name for testing
SERVICE_MODE: "sim" # default mode for testing
volumes:
- "${ACSS_CONFIG_FILEPATH}:/pipe/acss-config.yaml"
- "${PATH_TO_ACSS_SERVICES_ROOT}/:/pipe/acss_service/"
entrypoint:
- /pipe/.venv/bin/python
- /pipe/orbit_corr_agent.py
profiles:
- testing
- prod
networks:
- pipenetwork
old_agent:
build:
context: ${PATH_TO_ACSS_SERVICES_ROOT}/agents/orbit_old
dockerfile: ${PATH_TO_ACSS_CORE_ROOT}/docker/acss_service.Dockerfile
image: acss/old-orb-cor-agent-service
container_name: old_agent
hostname: old_agent
environment:
PYTHONPATH: /pipe:/pipe/acss_service/
ACSS_CONFIG_FILEPATH: /pipe/acss-config.yaml
PATH_TO_ACSS_SERVICES_ROOT: "/pipe/acss_service/"
volumes:
- "${ACSS_CONFIG_FILEPATH}:/pipe/acss-config.yaml"
- "${PATH_TO_ACSS_SERVICES_ROOT}/:/pipe/acss_service/"
working_dir: /pipe/
entrypoint:
- .venv/bin/python
- orbit_agent.py
profiles:
- testing
networks:
- pipenetwork
#--------------
# AGENTS FOR TESTING
#--------------
silly_agent_callback:
build:
context: ${PATH_TO_ACSS_SERVICES_ROOT}/agents/testing
dockerfile: ${PATH_TO_ACSS_CORE_ROOT}/docker/acss_service.Dockerfile
image: silly-agent-callback-service
container_name: silly_agent_callback
hostname: silly_agent_callback
environment:
PYTHONPATH: /pipe:/pipe/acss_service/
ACSS_CONFIG_FILEPATH: /pipe/acss-config.yaml
PATH_TO_ACSS_SERVICES_ROOT: "/pipe/acss_service/"
volumes:
- "${ACSS_CONFIG_FILEPATH}:/pipe/acss-config.yaml"
- "${PATH_TO_ACSS_SERVICES_ROOT}/:/pipe/acss_service/"
entrypoint:
- /pipe/.venv/bin/python
- /pipe/silly_agent_callback.py
profiles:
- silly
networks:
- pipenetwork
silly_agent:
build:
context: ${PATH_TO_ACSS_SERVICES_ROOT}/agents/testing
dockerfile: ${PATH_TO_ACSS_CORE_ROOT}/docker/acss_service.Dockerfile
image: silly-agent-service
container_name: silly_agent
hostname: silly_agent
environment:
PYTHONPATH: /pipe:/pipe/acss_service/
ACSS_CONFIG_FILEPATH: /pipe/acss-config.yaml
PATH_TO_ACSS_SERVICES_ROOT: "/pipe/acss_service/"
volumes:
- "${ACSS_CONFIG_FILEPATH}:/pipe/acss-config.yaml"
- "${PATH_TO_ACSS_SERVICES_ROOT}/:/pipe/acss_service/"
entrypoint:
- /pipe/.venv/bin/python
- /pipe/silly_agent.py
profiles:
- testing
networks:
- pipenetwork
silly_measure_agent:
build:
context: ${PATH_TO_ACSS_SERVICES_ROOT}/agents/testing
dockerfile: ${PATH_TO_ACSS_CORE_ROOT}/docker/acss_service.Dockerfile
image: acss/silly-measure-agent-service
container_name: silly_measure_agent
hostname: silly_measure_agent
environment:
PYTHONPATH: /pipe:/pipe/acss_service/
ACSS_CONFIG_FILEPATH: /pipe/acss-config.yaml
PATH_TO_ACSS_SERVICES_ROOT: "/pipe/acss_service/"
volumes:
- "${ACSS_CONFIG_FILEPATH}:/pipe/acss-config.yaml"
- "${PATH_TO_ACSS_SERVICES_ROOT}/:/pipe/acss_service/"
entrypoint:
- /pipe/.venv/bin/python
- /pipe/silly_measure_agent.py
profiles:
- testing
networks:
- pipenetwork
set_table_service:
build:
context: ${PATH_TO_ACSS_SERVICES_ROOT}/agents/testing
dockerfile: ${PATH_TO_ACSS_CORE_ROOT}/docker/acss_service.Dockerfile
image: acss/set-table-service
container_name: set_table_service
hostname: set_table_service
environment:
PYTHONPATH: /pipe:/pipe/acss_service/
ACSS_CONFIG_FILEPATH: /pipe/acss-config.yaml
SERVICE_NAME: "set_table_service" # default name for testing
SERVICE_MODE: "sim" # default mode for testing
PATH_TO_ACSS_SERVICES_ROOT: "/pipe/acss_service/"
volumes:
- "${ACSS_CONFIG_FILEPATH}:/pipe/acss-config.yaml"
- "${PATH_TO_ACSS_SERVICES_ROOT}/:/pipe/acss_service/"
entrypoint:
- /pipe/.venv/bin/python
- /pipe/set_table_service.py
profiles:
- testing
- silly
networks:
- pipenetwork
config_to_file_1:
build:
context: ${PATH_TO_ACSS_SERVICES_ROOT}/agents/testing
dockerfile: ${PATH_TO_ACSS_CORE_ROOT}/docker/acss_service.Dockerfile
image: config-to-file-1-service
container_name: config_to_file_1
hostname: config_to_file_1
environment:
PYTHONPATH: /pipe:/pipe/acss_service/
ACSS_CONFIG_FILEPATH: /pipe/acss-config.yaml
PATH_TO_ACSS_SERVICES_ROOT: "/pipe/acss_service/"
SERVICE_NAME: "config_to_file_1" # default name for testing
SERVICE_MODE: "sim" # default mode for testing
volumes:
- /tmp/:/tmp/
- "${PATH_TO_ACSS_SERVICES_ROOT}/:/pipe/acss_service/"
- "${ACSS_CONFIG_FILEPATH}:/pipe/acss-config.yaml"
entrypoint:
- /pipe/.venv/bin/python
- /pipe/config_to_file_service.py
profiles:
- testing
networks:
- pipenetwork
config_to_file_2:
build:
context: ${PATH_TO_ACSS_SERVICES_ROOT}/agents/testing
dockerfile: ${PATH_TO_ACSS_CORE_ROOT}/docker/acss_service.Dockerfile
image: config-to-file-2-service
container_name: config_to_file_2
hostname: config_to_file_2
environment:
PYTHONPATH: /pipe:/pipe/acss_service/
ACSS_CONFIG_FILEPATH: /pipe/acss-config.yaml
PATH_TO_ACSS_SERVICES_ROOT: "/pipe/acss_service/"
SERVICE_NAME: "config_to_file_2" # default name for testing
SERVICE_MODE: "sim" # default mode for testing
volumes:
- /tmp/:/tmp/
- "${ACSS_CONFIG_FILEPATH}:/pipe/acss-config.yaml"
- "${PATH_TO_ACSS_SERVICES_ROOT}/:/pipe/acss_service/"
entrypoint:
- /pipe/.venv/bin/python
- /pipe/config_to_file_service.py
profiles:
- testing
networks:
- pipenetwork
#--------------
# MACHINE HANDLER
#--------------
machine:
build:
context: ${PATH_TO_ACSS_SERVICES_ROOT}/machine
dockerfile: ${PATH_TO_ACSS_CORE_ROOT}/docker/acss_service.Dockerfile
image: acss/petra-machine-service
container_name: machine
hostname: machine
environment:
PYTHONPATH: /pipe:/pipe/acss_service/
ACSS_CONFIG_FILEPATH: /pipe/acss-config.yaml
PATH_TO_ACSS_SERVICES_ROOT: "/pipe/acss_service/"
volumes:
- "${ACSS_CONFIG_FILEPATH}:/pipe/acss-config.yaml"
- "${PATH_TO_ACSS_SERVICES_ROOT}/:/pipe/acss_service/"
entrypoint:
- /pipe/.venv/bin/python
- /pipe/PetraSimMachine.py
profiles:
- simulation
networks:
- pipenetwork
#---------------
# SIMULATIONS
#---------------
simulation:
build:
context: ${PATH_TO_ACSS_SERVICES_ROOT}/simulations/orbit
dockerfile: ${PATH_TO_ACSS_CORE_ROOT}/docker/acss_service.Dockerfile
image: petra-orbit-sim-service
container_name: simulation
hostname: simulation
environment:
PYTHONPATH: /pipe:/pipe/acss_service/
ACSS_CONFIG_FILEPATH: /pipe/acss-config.yaml
PATH_TO_ACSS_SERVICES_ROOT: "/pipe/acss_service/"
volumes:
- "${ACSS_CONFIG_FILEPATH}:/pipe/acss-config.yaml"
- "${PATH_TO_ACSS_SERVICES_ROOT}/:/pipe/acss_service/"
entrypoint:
- /pipe/.venv/bin/python
- /pipe/PetraOrbitSimulation.py
profiles:
- at
- simulation
networks:
- pipenetwork
simulation_database:
image: mariadb
container_name: simulation_database
hostname: simulation_database
restart: always
ports:
- 3306:3306
profiles:
- simulation
environment:
MYSQL_ROOT_PASSWORD: ${ACSS_DB_PW}
MYSQL_DATABASE: sim_db
networks:
- pipenetwork
fill_sim_db_job:
build:
context: ${PATH_TO_ACSS_CORE_ROOT}/services/scripts
dockerfile: ${PATH_TO_ACSS_CORE_ROOT}/docker/acss_service.Dockerfile
container_name: fill_sim_db_job
hostname: fill_sim_db_job
depends_on:
- simulation_database
profiles:
- simulation
environment:
PYTHONPATH: /pipe:/pipe/acss_service/
ACSS_CONFIG_FILEPATH: /pipe/acss-config.yaml
PATH_TO_ACSS_SERVICES_ROOT: /pipe/acss_service/
volumes:
- "${ACSS_CONFIG_FILEPATH}:/pipe/acss-config.yaml"
- "${PATH_TO_ACSS_SERVICES_ROOT}/:/pipe/acss_service/"
entrypoint:
- /pipe/.venv/bin/python
- /pipe/fill_sql_sim_db.py
networks:
- pipenetwork
#---------------
# SIMULATIONS FOR TESTING
#---------------
timed_silly_simulation:
build:
context: ${PATH_TO_ACSS_SERVICES_ROOT}/simulations/testing
dockerfile: ${PATH_TO_ACSS_CORE_ROOT}/docker/acss_service.Dockerfile
container_name: timed_silly_simulation
hostname: timed_silly_simulation
depends_on:
- create_topics_job
- register_frontend
environment:
PYTHONPATH: /pipe:/pipe/acss_service/
ACSS_CONFIG_FILEPATH: /pipe/acss-config.yaml
PATH_TO_ACSS_SERVICES_ROOT: "/pipe/acss_service/"
volumes:
- "${ACSS_CONFIG_FILEPATH}:/pipe/acss-config.yaml"
- "${PATH_TO_ACSS_SERVICES_ROOT}/:/pipe/acss_service/"
entrypoint:
- /pipe/.venv/bin/python
- /pipe/TimedSillySimulation.py
profiles:
- silly
networks:
- pipenetwork
silly_simulation:
build:
context: ${PATH_TO_ACSS_SERVICES_ROOT}/simulations/testing
dockerfile: ${PATH_TO_ACSS_CORE_ROOT}/docker/acss_service.Dockerfile
container_name: silly_simulation
hostname: silly_simulation
depends_on:
- create_topics_job
- register_frontend
environment:
PYTHONPATH: /pipe:/pipe/acss_service/
ACSS_CONFIG_FILEPATH: /pipe/acss-config.yaml
PATH_TO_ACSS_SERVICES_ROOT: "/pipe/acss_service/"
volumes:
- "${ACSS_CONFIG_FILEPATH}:/pipe/acss-config.yaml"
- "${PATH_TO_ACSS_SERVICES_ROOT}/:/pipe/acss_service/"
entrypoint:
- /pipe/.venv/bin/python
- /pipe/SillySimulation.py
profiles:
- silly
networks:
- pipenetwork
test_api:
build:
context: ${PATH_TO_ACSS_CORE_ROOT}
dockerfile: ${PATH_TO_ACSS_CORE_ROOT}/docker/test.Dockerfile
image: accs-test-api
container_name: test_api
hostname: test_api
# depends_on:
# - create_topics_job
# - register_frontend
environment:
PYTHONPATH: /pipe:/ocelot:/pipe/acss_service/
ACSS_CONFIG_FILEPATH: /pipe/acss-config.yaml
PATH_TO_ACSS_SERVICES_ROOT: "/pipe/acss_service/"
volumes:
- "/tmp/:/tmp/"
- "${ACSS_CONFIG_FILEPATH}:/pipe/acss-config.yaml"
- "${PATH_TO_ACSS_SERVICES_ROOT}/:/pipe/acss_service/"
profiles:
- testing
networks:
- pipenetwork
#----------------
# DEBUGGING
#----------------
phpmyadmin:
image: phpmyadmin/phpmyadmin
container_name: phpmyadmin
hostname: phpmyadmin
depends_on:
- simulation_database
restart: always
ports:
- 8088:80
environment:
PMA_HOST: simulation_database
MYSQL_ROOT_PASSWORD: ${ACSS_DB_PW}
profiles:
- simulation
networks:
- pipenetwork
# elasticsearch:
# image: elasticsearch:7.16.2
# container_name: elasticsearch
# hostname: elasticsearch
# profiles:
# - core
# environment:
# - "discovery.type=single-node"
# ports:
# - 9200:9200
# - 9300:9300
# networks:
# - pipenetwork
# kibana:
# image: kibana:7.16.2
# container_name: kibana
# hostname: kibana
# profiles:
# - core
# ports:
# - 5601:5601
# links:
# - elasticsearch:elasticsearch
# depends_on:
# - elasticsearch
# networks:
# - pipenetwork
# logstash:
# image: logstash:7.16.2
# container_name: logstash
# hostname: logstash
# profiles:
# - core
# ports:
# - 9600:9600
# - 8089:8089
# volumes:
# - ./logstash:/usr/share/logstash/pipeline/
# links:
# - elasticsearch:elasticsearch
# depends_on:
# - elasticsearch
# networks:
# - pipenetwork
networks:
pipenetwork:
driver: bridge