17 lines
423 B
YAML
17 lines
423 B
YAML
services:
|
|
port-checker:
|
|
build: .
|
|
image: sneaky/port-checker:ubuntu-slim
|
|
# Host networking is recommended for scanning accuracy/speed
|
|
network_mode: host
|
|
# Raw sockets for SYN scans (-sS). NET_ADMIN helps some environments.
|
|
cap_add:
|
|
- NET_RAW
|
|
- NET_ADMIN
|
|
security_opt:
|
|
- no-new-privileges:false
|
|
volumes:
|
|
- ./data:/app/data
|
|
environment:
|
|
- PYTHONUNBUFFERED=1
|