Files
container/zap/docker-compose.yml

14 lines
382 B
YAML
Raw Permalink Normal View History

2025-08-10 21:43:10 +00:00
services:
zap:
2025-08-10 22:08:36 +00:00
image: ghcr.io/zaproxy/zaproxy:stable
container_name: zap-webswing
2025-08-10 21:43:10 +00:00
ports:
2025-08-10 22:10:48 +00:00
- "${ZAP_UI_PORT}:8080" # Webswing GUI
2025-08-10 22:08:36 +00:00
- "${ZAP_API_PORT}:9090" # ZAP API
2025-08-10 21:43:10 +00:00
volumes:
2025-08-10 22:08:36 +00:00
- "${ZAP_WORK_DIR}:/zap/wrk:rw"
2025-08-10 21:43:10 +00:00
environment:
2025-08-10 22:08:36 +00:00
- ZAP_WEBSWING_OPTS=-host 0.0.0.0 -port 8080
user: zap
command: zap-webswing.sh
restart: unless-stopped