-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathdocker-compose.yml
42 lines (41 loc) · 905 Bytes
/
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
version: '2'
services:
ppc32-fmt-pwn:
build: challenges/ppc32-simple-fmt
volumes:
- shared-data:/shared
ports:
- "9001:9000"
environment:
- CHALLENGE_NAME=pwn1-uhoh
- PWNFLAG=FLAG_GOES_HERE
restart: always
x86-64-sandboxie:
build: challenges/x86-64-sandbox-BO
volumes:
- shared-data:/shared
ports:
- "9002:9000"
environment:
- CHALLENGE_NAME=pwn2-box
- PWNFLAG=FLAG_GOES_HERE
restart: always
dotnet-serial-pwn:
build: challenges/dotnet-deserialization
volumes:
- shared-data:/shared
ports:
- "9003:9000"
environment:
- CHALLENGE_NAME=pwn3-net
- PWNFLAG=FLAG_GOES_HERE
restart: always
nginx-static-server:
build: nginx-static-server
volumes:
- shared-data:/usr/share/nginx/html
ports:
- "8000:80"
restart: always
volumes:
shared-data: