-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
48 lines (44 loc) · 1.17 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
#version: '3'
services:
juiceshop:
container_name: juiceshop
image: bkimminich/juice-shop:latest
#build:
# dockerfile: Dockerfile
# context: ./juice-shop
ports:
- '3000:3000'
cloudguard-waf:
container_name: cp-waf
image: checkpoint/cloudguard-appsec-standalone:latest
entrypoint: /cloudguard-appsec-standalone --token $TOKEN --ignore-all
ports:
- '80:80'
- '8500:8500'
volumes:
- ./cp-waf/data:/etc/cp/data
- ./cp-waf/conf:/etc/cp/conf
- ./cp-waf/log:/var/log/nano_agent
- ./cp-waf/etc/nginx/conf.d:/etc/nginx/conf.d
- ./cp-waf/etc/certs:/etc/certs
- ./cp-waf/log/nginx:/var/log/nginx
test-host:
container_name: cp-tester
image: cp-waf-demo-test-host
stdin_open: true
tty: true
build:
dockerfile: Dockerfile
context: ./tester
volumes:
- ./tester/data:/home/web-scraper/data
hostname: tester
vampi:
image: erev0s/vampi:latest
container_name: vampi
ports:
- '5000:5000'
hostname: vampi
environment:
- vulnerable=1
- tokentimetolive=3600