-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
27 lines (26 loc) · 1.07 KB
/
docker-compose.yml
File metadata and controls
27 lines (26 loc) · 1.07 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
# ════════════════════════════════════════════════════════════
# ShieldCI — Docker Compose
# Run with: docker compose up --build
#
# This scans the included tests/ vulnerable app by default.
# To scan YOUR repo, change the volume mount:
# volumes:
# - /path/to/your/repo:/workspace
# ════════════════════════════════════════════════════════════
services:
shieldci:
build:
context: .
dockerfile: Dockerfile.allinone
container_name: shieldci
environment:
- OLLAMA_HOST=http://host.docker.internal:11434
- SHIELDCI_LOCAL_TOOLS=1
- SHIELDCI_MCP_CMD=python3 /app/kali_mcp.py
volumes:
# Default: scan the included vulnerable test app
- ./tests:/workspace
# Output: reports written back to your host
extra_hosts:
- "host.docker.internal:host-gateway"
network_mode: host