-
Notifications
You must be signed in to change notification settings - Fork 25
/
docker-compose.yml
39 lines (39 loc) · 1018 Bytes
/
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
version: "3"
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:7.6.2
environment:
discovery.type: single-node
indices.query.bool.max_clause_count: 4000
ports:
- "9200:9200"
networks:
- elastic
kibana:
image: docker.elastic.co/kibana/kibana:7.6.2
ports:
- "5601:5601"
networks:
- elastic
depends_on:
- elasticsearch
filebeat:
image: docker.elastic.co/beats/filebeat:7.6.2
volumes:
- ./malware-traffic-analysis.net:/logs:ro
- ./filebeat-config/suricata.yml:/usr/share/filebeat/modules.d/suricata.yml
networks:
- elastic
depends_on:
- elasticsearch
- kibana
loader:
build: .
volumes:
- .:/datasets
networks:
- elastic
depends_on:
- elasticsearch
networks:
elastic: