-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
36 lines (33 loc) · 1.01 KB
/
docker-compose.yml
File metadata and controls
36 lines (33 loc) · 1.01 KB
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
services:
# OWASP Juice Shop - Test uygulaması
juice-shop:
image: bkimminich/juice-shop:latest
container_name: juice-shop
ports:
- "3000:3000"
environment:
- NODE_ENV=production
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:3000"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s
# OWASP ZAP - Güvenlik tarama aracı (manuel kurulum gerekli)
# zap:
# image: owasp/zap:latest
# container_name: zap-proxy
# ports:
# - "8080:8080"
# environment:
# - ZAP_WEBSWING_OPTS=-hsqldb.system.exitonshutdown=true
# command: >
# zap.sh -daemon -host 0.0.0.0 -port 8080 -config api.addrs.addr.name=.* -config api.addrs.addr.regex=true -config api.key=test-api-key
# restart: unless-stopped
# healthcheck:
# test: ["CMD", "curl", "-f", "http://localhost:8080/JSON/core/view/version/"]
# interval: 30s
# timeout: 10s
# retries: 5
# start_period: 60s