-
Notifications
You must be signed in to change notification settings - Fork 4
/
docker-compose.yml
58 lines (58 loc) · 1.23 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
version: '2'
services:
bof:
build: ./bof/
volumes:
- ./bof/share:/home/bof:ro
- ./bof/xinetd:/etc/xinetd.d/bof:ro
ports:
- "10000:4597"
orw:
build: ./orw/
volumes:
- ./orw/share:/home/orw:ro
- ./orw/xinetd:/etc/xinetd.d/orw:ro
ports:
- "10001:4597"
ppap:
build: ./ppap/
volumes:
- ./ppap/share:/home/ppap:ro
- ./ppap/xinetd:/etc/xinetd.d/ppap:ro
ports:
- "10002:4597"
hello:
build: ./hello/
volumes:
- ./hello/share:/home/hello:ro
- ./hello/xinetd:/etc/xinetd.d/hello:ro
ports:
- "10003:4597"
shellcode-2019:
build: ./shellcode-2019/
volumes:
- ./shellcode-2019/share:/home/shellcode-2019:ro
- ./shellcode-2019/xinetd:/etc/xinetd.d/shellcode-2019:ro
ports:
- "10004:4597"
secure-bof:
build: ./secure-bof/
volumes:
- ./secure-bof/share:/home/secure-bof:ro
- ./secure-bof/xinetd:/etc/xinetd.d/secure-bof:ro
ports:
- "10005:4597"
box:
build: ./box/
volumes:
- ./box/share:/home/box:ro
- ./box/xinetd:/etc/xinetd.d/box:ro
ports:
- "10006:4597"
box_plus_plus:
build: ./box++/
volumes:
- ./box++/share:/home/box++:ro
- ./box++/xinetd:/etc/xinetd.d/box++:ro
ports:
- "10007:4597"