This repository has been archived by the owner on Apr 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 267
/
docker-compose.yml
83 lines (80 loc) · 1.6 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
version: "3"
services:
avg:
image: malice/avg
links:
- rethink
command: -t befb88b89c2eb401900a68e9f5b78764203f2b48264fcc3f7121bf04a57fd408
volumes:
- ../data/samples:/malware:ro
networks:
- malice
bitdefender:
image: malice/bitdefender
links:
- rethink
command: -t befb88b89c2eb401900a68e9f5b78764203f2b48264fcc3f7121bf04a57fd408
volumes:
- ../data/samples:/malware:ro
networks:
- malice
clamav:
image: malice/clamav
links:
- rethink
command: -t befb88b89c2eb401900a68e9f5b78764203f2b48264fcc3f7121bf04a57fd408
volumes:
- ../data/samples:/malware:ro
networks:
- malice
comodo:
image: malice/comodo
links:
- rethink
command: -t befb88b89c2eb401900a68e9f5b78764203f2b48264fcc3f7121bf04a57fd408
volumes:
- ../data/samples:/malware:ro
networks:
- malice
fprot:
image: malice/fprot
links:
- rethink
command: -t befb88b89c2eb401900a68e9f5b78764203f2b48264fcc3f7121bf04a57fd408
volumes:
- ../data/samples:/malware:ro
networks:
- malice
# ELK
elk:
image: blacktop/elk
ports:
- "9200:9200"
- "80:80"
networks:
- malice
# LOGSTASH
logstash:
build: ./logstash
links:
- rethink
- elk:elasticsearch
networks:
- malice
# RETHINKDB
rethink:
container_name: rethink
image: rethinkdb
ports:
- "28015:28015"
- "8081:8080"
volumes:
- malice:/data
networks:
- malice
volumes:
? malice
? es_data
networks:
malice:
driver: bridge