-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
38 lines (38 loc) · 752 Bytes
/
docker-compose.yml
File metadata and controls
38 lines (38 loc) · 752 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
version: "3.8"
services:
honbu-dojo :
container_name: honbu-dojo
image: ghcr.io/0xffsec/honbu-dojo:main
ports:
- "80:8080"
volumes:
- "/var/run/docker.sock:/var/run/docker.sock"
web-dvwa:
container_name: web-dvwa
image: vulnerables/web-dvwa
ports:
- "2000:80"
labels:
- "webapp"
juice-shop:
container_name: juice-shop
image: bkimminich/juice-shop
ports:
- "3000:3000"
labels:
- "webapp"
webgoat:
container_name: webgoat
image: webgoat/goatandwolf
ports:
- "4000:8080"
- "4001:9090"
labels:
- "webapp"
dvna:
container_name: dvna
image: appsecco/dvna:sqlite
ports:
- "5000:9090"
labels:
- "webapp"