init commit

This commit is contained in:
2025-10-17 13:54:04 -05:00
commit 9956667c8f
17 changed files with 1124 additions and 0 deletions

16
docker-compose.yaml Normal file
View File

@@ -0,0 +1,16 @@
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