generated from stratosphereips/awesome-code-template
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathdocker-compose.yml
68 lines (63 loc) · 1.41 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
version: '3.7'
services:
lab:
build: .
container_name: scl-class-12-lab
stop_grace_period: 0s
hostname: class12
networks:
playground-net:
ipv4_address: 172.20.0.102
aliases:
- class12
juiceshop:
image: bkimminich/juice-shop
container_name: scl-class-12-juiceshop
restart: unless-stopped
stop_grace_period: 0s
networks:
playground-net:
ipv4_address: 172.20.0.103
aliases:
- juiceshop
- juiceshop1
- juiceshop2
- juiceshop3
- juice.bsy.com
waf:
image: gbe0/coraza:latest
container_name: scl-class-12-coraza
restart: unless-stopped
stop_grace_period: 0s
networks:
playground-net:
ipv4_address: 172.20.0.104
aliases:
- protected-juiceshop
- waf
- waf.bsy.com
depends_on:
- juiceshop
environment:
- CADDY_REVERSE_PROXY=juiceshop:3000
- CORAZA_SECRULEENGINE=On
nginx:
build: ./nginx
container_name: scl-class-12-nginx
restart: unless-stopped
stop_grace_period: 0s
networks:
playground-net:
ipv4_address: 172.20.0.105
aliases:
- juicynginx
- bsy.com
- app.bsy.com
- example.bsy.com
- hidden.bsy.com
- pub.bsy.com
depends_on:
- juiceshop
networks:
playground-net:
external: true