-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
61 lines (55 loc) · 1.19 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
version: '3'
services:
centos7:
build: builds/centos7
volumes:
- ./data:/data
ports:
- '2221:22'
command: '/bin/bash /data/init.sh'
cap_add:
- SYS_PTRACE # for fast-root or deep scan
centos8:
build: builds/centos8
volumes:
- ./data:/data
ports:
- '2222:22'
command: '/bin/bash /data/init.sh'
cap_add:
- SYS_PTRACE # for fast-root or deep scan
debian10:
build: builds/debian10
volumes:
- ./data:/data
ports:
- '2223:22'
command: '/bin/bash /data/init.sh'
cap_add:
- SYS_PTRACE # for fast-root or deep scan
ubuntu18:
build: builds/ubuntu18
volumes:
- ./data:/data
ports:
- '2224:22'
command: '/bin/bash /data/init.sh'
cap_add:
- SYS_PTRACE # for fast-root or deep scan
vlunhub:
build: builds/vlunhub
volumes:
- ./data:/data
ports:
- '9999:22'
command: '/bin/bash /data/init.sh'
cap_add:
- SYS_PTRACE # for fast-root or deep scan
vulsrepo:
image: ishidaco/vulsrepo:latest
command:
- vulsrepo-server
volumes:
- ./results:/vuls/results
ports:
- "5111:5111"