-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
62 lines (53 loc) · 841 Bytes
/
docker-compose.yml
File metadata and controls
62 lines (53 loc) · 841 Bytes
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
version: '3'
services:
nsjail:
build: nsjail
image: nsjail
drone:
build: ./drone
environment:
- HOST=0.0.0.0
- PORT=9000
expose:
- 9000
ports:
- "1000:9000"
drone2:
build: ./drone2
environment:
- HOST=0.0.0.0
- PORT=9000
expose:
- 9000
ports:
- "1001:9000"
pwn:
build: ./pwn
depends_on:
- nsjail
privileged: true
environment:
- HOST=0.0.0.0
- PORT=9000
expose:
- 9000
ports:
- "1002:9000"
aes:
build: ./aes_ecb_text
expose:
- 9000
ports:
- "1003:9000"
bash_injection:
build: ./bash_injection
expose:
- 5000
ports:
- "1004:5000"
glebokie_ukrycie:
build: ./glebokie_ukrycie
expose:
- 80
ports:
- "1005:80"