-
Notifications
You must be signed in to change notification settings - Fork 24
/
docker-compose.yml
116 lines (100 loc) · 2.24 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
version: '3.7'
networks:
pentesting:
driver: bridge
volumes:
webgoat:
dbwap:
bwapp:
wpress:
services:
wodpress:
container_name: vulwps
image: l505/vulnerablewordpress
restart: on-failure
mem_limit: 200m
cpus: 0.5
ports:
- 8086:80
- 3306:3306
volumes:
- wpress:/var/www/
networks:
- pentesting
ninjaweb:
container_name: ninjaweb
image: opendns/security-ninjas
restart: on-failure
mem_limit: 200m
cpus: 0.5
ports:
- 8899:80
networks:
- pentesting
webgoat:
container_name: webgoat
image: webgoat/webgoat-8.0
restart: on-failure
mem_limit: 200m
cpus: 0.5
ports:
- 8080:8080
volumes:
- webgoat:/var/www/
networks:
- pentesting
dvwap:
container_name: dvwap
image: vulnerables/web-dvwa
restart: on-failure
mem_limit: 200m
cpus: 0.5
ports:
- 8081:80
volumes:
- dbwap:/var/www/
networks:
- pentesting
bwapp:
container_name: bwapp
image: feltsecure/owasp-bwapp
restart: on-failure
mem_limit: 200m
cpus: 0.5
ports:
- 8082:80
volumes:
- bwapp:/var/www/
networks:
- pentesting
shop:
container_name: juiceshop
image: bkimminich/juice-shop
restart: on-failure
mem_limit: 200m
cpus: 0.5
ports:
- 8083:3000
networks:
- pentesting
bricks:
container_name: bricks
image: citizenstig/owaspbricks
restart: on-failure
mem_limit: 200m
cpus: 0.5
ports:
- 8084:80
networks:
- pentesting
owasp:
container_name: owasp17
image: bltsec/mutillidae-docker
restart: on-failure
mem_limit: 200m
cpus: 0.5
ports:
- 8088:80
- 443:443
networks:
- pentesting