-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose-standalone.yml
674 lines (670 loc) · 18.5 KB
/
docker-compose-standalone.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
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
# Copyright (c) 2023 Battelle Energy Alliance, LLC. All rights reserved.
version: '3.7'
services:
opensearch:
image: ghcr.io/idaholab/malcolm/opensearch:23.05.1
restart: "no"
stdin_open: false
tty: true
hostname: opensearch
networks:
- default
env_file:
- ./config/process.env
- ./config/ssl.env
- ./config/opensearch.env
environment:
VIRTUAL_HOST : 'os.malcolm.local'
ulimits:
memlock:
soft: -1
hard: -1
cap_add:
- IPC_LOCK
volumes:
- ./nginx/ca-trust:/var/local/ca-trust:ro
- ./.opensearch.primary.curlrc:/var/local/curlrc/.opensearch.primary.curlrc:ro
- ./.opensearch.secondary.curlrc:/var/local/curlrc/.opensearch.secondary.curlrc:ro
- ./opensearch:/usr/share/opensearch/data:delegated
- ./opensearch-backup:/opt/opensearch/backup:delegated
- ./opensearch/opensearch.keystore:/usr/share/opensearch/config/persist/opensearch.keystore:rw
healthcheck:
test: ["CMD", "curl", "--silent", "--fail", "http://localhost:9200"]
interval: 30s
timeout: 15s
retries: 3
start_period: 180s
dashboards-helper:
image: ghcr.io/idaholab/malcolm/dashboards-helper:23.05.1
restart: "no"
stdin_open: false
tty: true
hostname: dashboards-helper
networks:
- default
env_file:
- ./config/process.env
- ./config/ssl.env
- ./config/opensearch.env
- ./config/dashboards-helper.env
environment:
VIRTUAL_HOST : 'dashboards-helper.malcolm.local'
depends_on:
- opensearch
volumes:
- ./nginx/ca-trust:/var/local/ca-trust:ro
- ./.opensearch.primary.curlrc:/var/local/curlrc/.opensearch.primary.curlrc:ro
- ./.opensearch.secondary.curlrc:/var/local/curlrc/.opensearch.secondary.curlrc:ro
healthcheck:
test: ["CMD", "supervisorctl", "status", "cron", "maps"]
interval: 60s
timeout: 15s
retries: 3
start_period: 30s
dashboards:
image: ghcr.io/idaholab/malcolm/dashboards:23.05.1
restart: "no"
stdin_open: false
tty: true
hostname: dashboards
networks:
- default
env_file:
- ./config/process.env
- ./config/ssl.env
- ./config/opensearch.env
environment:
VIRTUAL_HOST : 'dashboards.malcolm.local'
depends_on:
- opensearch
- dashboards-helper
volumes:
- ./nginx/ca-trust:/var/local/ca-trust:ro
- ./.opensearch.primary.curlrc:/var/local/curlrc/.opensearch.primary.curlrc:ro
healthcheck:
test: ["CMD", "curl", "--silent", "--fail", "http://localhost:5601/dashboards/api/status"]
interval: 30s
timeout: 15s
retries: 3
start_period: 210s
logstash:
image: ghcr.io/idaholab/malcolm/logstash-oss:23.05.1
restart: "no"
stdin_open: false
tty: true
hostname: logstash
networks:
- default
ulimits:
memlock:
soft: -1
hard: -1
cap_add:
- IPC_LOCK
env_file:
- ./config/process.env
- ./config/ssl.env
- ./config/opensearch.env
- ./config/netbox-common.env
- ./config/netbox.env
- ./config/netbox-secret.env
- ./config/beats-common.env
- ./config/lookup-common.env
- ./config/logstash.env
depends_on:
- opensearch
ports:
- "127.0.0.1:5044:5044"
volumes:
- ./nginx/ca-trust:/var/local/ca-trust:ro
- ./.opensearch.primary.curlrc:/var/local/curlrc/.opensearch.primary.curlrc:ro
- ./.opensearch.secondary.curlrc:/var/local/curlrc/.opensearch.secondary.curlrc:ro
- ./logstash/maps/malcolm_severity.yaml:/etc/malcolm_severity.yaml:ro
- ./logstash/certs/ca.crt:/certs/ca.crt:ro
- ./logstash/certs/server.crt:/certs/server.crt:ro
- ./logstash/certs/server.key:/certs/server.key:ro
healthcheck:
test: ["CMD", "curl", "--silent", "--fail", "http://localhost:9600"]
interval: 30s
timeout: 15s
retries: 3
start_period: 600s
filebeat:
image: ghcr.io/idaholab/malcolm/filebeat-oss:23.05.1
restart: "no"
stdin_open: false
tty: true
hostname: filebeat
networks:
- default
env_file:
- ./config/process.env
- ./config/ssl.env
- ./config/opensearch.env
- ./config/upload-common.env
- ./config/nginx.env
- ./config/beats-common.env
- ./config/filebeat.env
depends_on:
- logstash
ports:
- "127.0.0.1:5045:5045"
volumes:
- ./nginx/ca-trust:/var/local/ca-trust:ro
- ./.opensearch.primary.curlrc:/var/local/curlrc/.opensearch.primary.curlrc:ro
- nginx-log-path:/nginx:ro
- ./zeek-logs:/zeek
- ./suricata-logs:/suricata
- ./filebeat/certs/ca.crt:/certs/ca.crt:ro
- ./filebeat/certs/client.crt:/certs/client.crt:ro
- ./filebeat/certs/client.key:/certs/client.key:ro
healthcheck:
test: ["CMD", "supervisorctl", "status", "filebeat"]
interval: 30s
timeout: 15s
retries: 3
start_period: 60s
arkime:
image: ghcr.io/idaholab/malcolm/arkime:23.05.1
restart: "no"
stdin_open: false
tty: true
hostname: arkime
networks:
- default
env_file:
- ./config/process.env
- ./config/ssl.env
- ./config/opensearch.env
- ./config/upload-common.env
- ./config/auth.env
- ./config/arkime.env
- ./config/arkime-secret.env
environment:
VIRTUAL_HOST : 'arkime.malcolm.local'
ulimits:
memlock:
soft: -1
hard: -1
depends_on:
- opensearch
volumes:
- ./nginx/ca-trust:/var/local/ca-trust:ro
- ./.opensearch.primary.curlrc:/var/local/curlrc/.opensearch.primary.curlrc:ro
- ./pcap:/data/pcap
- ./arkime-logs:/opt/arkime/logs
- ./arkime-raw:/opt/arkime/raw
healthcheck:
test: ["CMD", "curl", "--insecure", "--silent", "--fail", "https://localhost:8005/_ns_/nstest.html"]
interval: 90s
timeout: 30s
retries: 3
start_period: 210s
zeek:
image: ghcr.io/idaholab/malcolm/zeek:23.05.1
restart: "no"
stdin_open: false
tty: true
hostname: zeek
networks:
- default
ulimits:
memlock:
soft: -1
hard: -1
cap_add:
- IPC_LOCK
- NET_ADMIN
- NET_RAW
- SYS_ADMIN
env_file:
- ./config/process.env
- ./config/ssl.env
- ./config/upload-common.env
- ./config/zeek.env
- ./config/zeek-secret.env
- ./config/zeek-offline.env
depends_on:
- opensearch
volumes:
- ./nginx/ca-trust:/var/local/ca-trust:ro
- ./pcap:/pcap
- ./zeek-logs/upload:/zeek/upload
- ./zeek-logs/extract_files:/zeek/extract_files
- ./zeek/intel:/opt/zeek/share/zeek/site/intel
healthcheck:
test: ["CMD", "supervisorctl", "status", "pcap-zeek"]
interval: 30s
timeout: 15s
retries: 3
start_period: 60s
zeek-live:
image: ghcr.io/idaholab/malcolm/zeek:23.05.1
restart: "no"
stdin_open: false
tty: true
network_mode: host
ulimits:
memlock:
soft: -1
hard: -1
cap_add:
- IPC_LOCK
- NET_ADMIN
- NET_RAW
- SYS_ADMIN
env_file:
- ./config/process.env
- ./config/ssl.env
- ./config/upload-common.env
- ./config/pcap-capture.env
- ./config/zeek.env
- ./config/zeek-secret.env
- ./config/zeek-live.env
volumes:
- ./nginx/ca-trust:/var/local/ca-trust:ro
- ./zeek-logs/live:/zeek/live
- ./zeek-logs/extract_files:/zeek/extract_files
- ./zeek/intel:/opt/zeek/share/zeek/site/intel
suricata:
image: ghcr.io/idaholab/malcolm/suricata:23.05.1
restart: "no"
stdin_open: false
tty: true
hostname: suricata
networks:
- default
ulimits:
memlock:
soft: -1
hard: -1
cap_add:
- IPC_LOCK
- NET_ADMIN
- NET_RAW
- SYS_ADMIN
env_file:
- ./config/process.env
- ./config/ssl.env
- ./config/upload-common.env
- ./config/suricata.env
- ./config/suricata-offline.env
depends_on:
- logstash
volumes:
- ./nginx/ca-trust:/var/local/ca-trust:ro
- ./suricata-logs:/var/log/suricata
- ./pcap:/data/pcap
- ./suricata/rules:/opt/suricata/rules:ro
healthcheck:
test: ["CMD", "supervisorctl", "status", "pcap-suricata"]
interval: 30s
timeout: 15s
retries: 3
start_period: 120s
suricata-live:
image: ghcr.io/idaholab/malcolm/suricata:23.05.1
restart: "no"
stdin_open: false
tty: true
network_mode: host
ulimits:
memlock:
soft: -1
hard: -1
cap_add:
- IPC_LOCK
- NET_ADMIN
- NET_RAW
- SYS_ADMIN
env_file:
- ./config/process.env
- ./config/ssl.env
- ./config/upload-common.env
- ./config/pcap-capture.env
- ./config/suricata.env
- ./config/suricata-live.env
volumes:
- ./nginx/ca-trust:/var/local/ca-trust:ro
- ./suricata-logs:/var/log/suricata
- ./suricata/rules:/opt/suricata/rules:ro
file-monitor:
image: ghcr.io/idaholab/malcolm/file-monitor:23.05.1
restart: "no"
stdin_open: false
tty: true
hostname: file-monitor
networks:
- default
env_file:
- ./config/process.env
- ./config/ssl.env
- ./config/zeek.env
- ./config/zeek-secret.env
environment:
VIRTUAL_HOST : 'file-monitor.malcolm.local'
volumes:
- ./nginx/ca-trust:/var/local/ca-trust:ro
- ./zeek-logs/extract_files:/zeek/extract_files
- ./zeek-logs/current:/zeek/logs
- ./yara/rules:/yara-rules/custom:ro
healthcheck:
test: ["CMD", "supervisorctl", "status", "watcher", "logger"]
interval: 30s
timeout: 15s
retries: 3
start_period: 60s
pcap-capture:
image: ghcr.io/idaholab/malcolm/pcap-capture:23.05.1
restart: "no"
stdin_open: false
tty: true
network_mode: host
ulimits:
memlock:
soft: -1
hard: -1
cap_add:
- IPC_LOCK
- NET_ADMIN
- NET_RAW
- SYS_ADMIN
env_file:
- ./config/process.env
- ./config/ssl.env
- ./config/pcap-capture.env
volumes:
- ./nginx/ca-trust:/var/local/ca-trust:ro
- ./pcap/upload:/pcap
pcap-monitor:
image: ghcr.io/idaholab/malcolm/pcap-monitor:23.05.1
restart: "no"
stdin_open: false
tty: true
hostname: pcap-monitor
networks:
- default
env_file:
- ./config/process.env
- ./config/ssl.env
- ./config/opensearch.env
- ./config/upload-common.env
depends_on:
- opensearch
volumes:
- ./nginx/ca-trust:/var/local/ca-trust:ro
- ./.opensearch.primary.curlrc:/var/local/curlrc/.opensearch.primary.curlrc:ro
- ./zeek-logs:/zeek
- ./pcap:/pcap
healthcheck:
test: ["CMD", "supervisorctl", "status", "watch-upload", "pcap-publisher"]
interval: 30s
timeout: 15s
retries: 3
start_period: 90s
upload:
image: ghcr.io/idaholab/malcolm/file-upload:23.05.1
restart: "no"
stdin_open: false
tty: true
hostname: upload
networks:
- default
env_file:
- ./config/process.env
- ./config/ssl.env
- ./config/auth.env
- ./config/upload.env
environment:
VIRTUAL_HOST : 'upload.malcolm.local'
depends_on:
- arkime
ports:
- "127.0.0.1:8022:22"
volumes:
- ./nginx/ca-trust:/var/local/ca-trust:ro
- ./pcap/upload:/var/www/upload/server/php/chroot/files
healthcheck:
test: ["CMD", "wget", "-qO-", "http://localhost"]
interval: 30s
timeout: 15s
retries: 3
start_period: 60s
htadmin:
image: ghcr.io/idaholab/malcolm/htadmin:23.05.1
restart: "no"
stdin_open: false
tty: true
hostname: htadmin
networks:
- default
env_file:
- ./config/process.env
- ./config/ssl.env
- ./config/auth-common.env
environment:
VIRTUAL_HOST : 'htadmin.malcolm.local'
volumes:
- ./nginx/ca-trust:/var/local/ca-trust:ro
- ./htadmin/config.ini:/var/www/htadmin/config/config.ini:rw
- ./htadmin/metadata:/var/www/htadmin/config/metadata:rw
- ./nginx/htpasswd:/var/www/htadmin/auth/htpasswd:rw
healthcheck:
test: ["CMD", "curl", "--silent", "--fail", "http://localhost"]
interval: 60s
timeout: 15s
retries: 3
start_period: 60s
freq:
image: ghcr.io/idaholab/malcolm/freq:23.05.1
restart: "no"
stdin_open: false
tty: true
hostname: freq
networks:
- default
env_file:
- ./config/process.env
- ./config/ssl.env
- ./config/lookup-common.env
environment:
VIRTUAL_HOST : 'freq.malcolm.local'
volumes:
- ./nginx/ca-trust:/var/local/ca-trust:ro
healthcheck:
test: ["CMD", "curl", "--silent", "--fail", "http://localhost:10004"]
interval: 30s
timeout: 15s
retries: 3
start_period: 60s
netbox:
image: ghcr.io/idaholab/malcolm/netbox:23.05.1
restart: "no"
stdin_open: false
tty: true
hostname: netbox
networks:
- default
env_file:
- ./config/process.env
- ./config/ssl.env
- ./config/netbox-common.env
- ./config/netbox.env
- ./config/netbox-secret.env
environment:
VIRTUAL_HOST : 'netbox.malcolm.local'
depends_on:
- netbox-postgres
- netbox-redis
- netbox-redis-cache
volumes:
- ./nginx/ca-trust:/var/local/ca-trust:ro
- ./netbox/config/configuration:/etc/netbox/config:ro
- ./netbox/config/reports:/etc/netbox/reports:ro
- ./netbox/config/scripts:/etc/netbox/scripts:ro
- ./netbox/media:/opt/netbox/netbox/media:rw
- ./net-map.json:/usr/local/share/net-map.json:ro
healthcheck:
test: ["CMD", "curl", "--silent", "http://localhost:8080/netbox/api/" ]
interval: 60s
timeout: 15s
retries: 3
start_period: 120s
netbox-postgres:
image: ghcr.io/idaholab/malcolm/postgresql:23.05.1
restart: "no"
stdin_open: false
tty: true
hostname: netbox-postgres
networks:
- default
env_file:
- ./config/process.env
- ./config/ssl.env
- ./config/netbox-common.env
- ./config/netbox-postgres.env
environment:
VIRTUAL_HOST : 'netbox-postgres.malcolm.local'
volumes:
- ./nginx/ca-trust:/var/local/ca-trust:ro
- ./netbox/postgres:/var/lib/postgresql/data:rw
healthcheck:
test: [ "CMD-SHELL", "[[ $${NETBOX_POSTGRES_DISABLED} == 'true' ]] || pg_isready -d $${POSTGRES_DB} -U $${POSTGRES_USER}" ]
interval: 60s
timeout: 15s
retries: 3
start_period: 45s
netbox-redis:
image: ghcr.io/idaholab/malcolm/redis:23.05.1
restart: "no"
stdin_open: false
tty: true
hostname: netbox-redis
networks:
- default
env_file:
- ./config/process.env
- ./config/ssl.env
- ./config/netbox-common.env
- ./config/netbox-redis.env
environment:
VIRTUAL_HOST : 'netbox-redis.malcolm.local'
command:
- sh
- -c
- redis-server --appendonly yes --requirepass $$REDIS_PASSWORD
volumes:
- ./nginx/ca-trust:/var/local/ca-trust:ro
- ./netbox/redis:/data
healthcheck:
test: ["CMD-SHELL", "[[ $${NETBOX_REDIS_DISABLED} == 'true' ]] || ( pidof redis-server || exit 1 )" ]
interval: 60s
timeout: 15s
retries: 3
start_period: 45s
netbox-redis-cache:
image: ghcr.io/idaholab/malcolm/redis:23.05.1
restart: "no"
stdin_open: false
tty: true
hostname: netbox-redis-cache
networks:
- default
env_file:
- ./config/process.env
- ./config/ssl.env
- ./config/netbox-common.env
- ./config/netbox-redis-cache.env
environment:
VIRTUAL_HOST : 'netbox-redis-cache.malcolm.local'
command:
- sh
- -c
- redis-server --requirepass $$REDIS_PASSWORD
volumes:
- ./nginx/ca-trust:/var/local/ca-trust:ro
healthcheck:
test: ["CMD-SHELL", "[[ $${NETBOX_REDIS_DISABLED} == 'true' ]] || ( pidof redis-server || exit 1 )" ]
interval: 60s
timeout: 15s
retries: 3
start_period: 45s
api:
image: ghcr.io/idaholab/malcolm/api:23.05.1
command: gunicorn --bind 0:5000 manage:app
restart: "no"
stdin_open: false
tty: true
hostname: api
networks:
- default
env_file:
- ./config/process.env
- ./config/ssl.env
- ./config/opensearch.env
environment:
VIRTUAL_HOST : 'api.malcolm.local'
volumes:
- ./nginx/ca-trust:/var/local/ca-trust:ro
- ./.opensearch.primary.curlrc:/var/local/curlrc/.opensearch.primary.curlrc:ro
healthcheck:
test: ["CMD", "curl", "--silent", "--fail", "http://localhost:5000/mapi/ping"]
interval: 30s
timeout: 15s
retries: 3
start_period: 60s
nginx-proxy:
image: ghcr.io/idaholab/malcolm/nginx-proxy:23.05.1
restart: "no"
stdin_open: false
tty: true
hostname: nginx-proxy
networks:
- default
env_file:
- ./config/process.env
- ./config/ssl.env
- ./config/auth-common.env
- ./config/nginx.env
depends_on:
- api
- arkime
- dashboards
- file-monitor
- htadmin
- netbox
- upload
ports:
- "0.0.0.0:443:443"
- "127.0.0.1:9200:9200"
volumes:
- ./nginx/ca-trust:/var/local/ca-trust:ro
- nginx-log-path:/var/log/nginx:rw
- ./nginx/nginx_ldap.conf:/etc/nginx/nginx_ldap.conf:ro
- ./nginx/htpasswd:/etc/nginx/auth/htpasswd:ro
- ./nginx/certs:/etc/nginx/certs:ro
- ./nginx/certs/dhparam.pem:/etc/nginx/dhparam/dhparam.pem:ro
healthcheck:
test: ["CMD", "curl", "--insecure", "--silent", "https://localhost:443"]
interval: 30s
timeout: 15s
retries: 3
start_period: 120s
labels:
traefik.enable: 'false'
# traefik.http.routers.osmalcolm.rule: 'Host(``)'
# traefik.http.routers.osmalcolm.entrypoints: ''
# traefik.http.routers.osmalcolm.tls.certresolver: ''
# traefik.http.routers.osmalcolm.service: 'osmalcolm'
# traefik.http.services.osmalcolm.loadbalancer.server.port: '9200'
# traefik.http.routers.malcolm.rule: 'Host(``)'
# traefik.http.routers.malcolm.entrypoints: ''
# traefik.http.routers.malcolm.tls.certresolver: ''
# traefik.http.routers.malcolm.service: 'malcolm'
# traefik.http.services.malcolm.loadbalancer.server.port: '443'
# shared named volume so filebeat can access nginx access logs
volumes:
nginx-log-path:
networks:
default:
external: false