14 lines
355 B
YAML
14 lines
355 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
scanner:
|
|
build: .
|
|
image: sneakyscanner:latest
|
|
container_name: sneakyscanner
|
|
privileged: true # Required for masscan raw socket access
|
|
network_mode: host # Required for network scanning
|
|
volumes:
|
|
- ./configs:/app/configs:ro
|
|
- ./output:/app/output
|
|
command: /app/configs/example-site.yaml
|