-
Notifications
You must be signed in to change notification settings - Fork 5
/
docker-compose.yaml
79 lines (70 loc) · 1.7 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
version: '3'
services:
go-yara:
container_name: mft_go-yara
build: MFT-Docker/docker/yara
downloader:
container_name: mft_downloader
build: MFT-Downloader
volumes:
- './config:/app/config'
restart: unless-stopped
network_mode: "host"
importer:
container_name: mft_importer
build: MFT-Importer
volumes:
- './config:/app/config'
restart: unless-stopped
network_mode: "host"
reindexer:
container_name: mft_reindexer
build: MFT-Reindexer
volumes:
- './config:/app/config'
restart: unless-stopped
network_mode: "host"
analyser_amd:
container_name: mft_analyser_amd
build: Analyser/AMD
volumes:
- './config:/app/config'
restart: unless-stopped
network_mode: "host"
analyser_intel:
container_name: mft_analyser_intel
build: Analyser/Intel
volumes:
- './config:/app/config'
restart: unless-stopped
network_mode: "host"
analyser_efi:
container_name: mft_analyser_efi
build: Analyser/EFI
volumes:
- './config:/app/config'
restart: unless-stopped
network_mode: "host"
analyser_microcode:
container_name: mft_analyser_micocode
build: Analyser/Microcode
volumes:
- './config:/app/config'
restart: unless-stopped
network_mode: "host"
analyser_certificates:
container_name: mft_analyser_certificates
build: Analyser/Certificates
volumes:
- './config:/app/config'
restart: unless-stopped
network_mode: "host"
frontend:
container_name: mft_frontend
build: MFT-Frontend
volumes:
- './config:/app/config'
restart: unless-stopped
network_mode: "host"
ports:
- 127.0.0.1:9080:9080