Add project files: source code, Docker setup, docs and config templates

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
root
2026-04-28 11:21:39 +02:00
parent 32012cd670
commit 69f2ee866a
18 changed files with 5216 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
version: '3.8'
services:
netmon:
build: .
container_name: netmon
restart: unless-stopped
# host network für ARP-Scans und echte Interface-Daten
network_mode: host
# privileged für raw sockets (scapy/nmap)
privileged: true
cap_add:
- NET_ADMIN
- NET_RAW
env_file: .env
volumes:
- ./data:/data
- ./.env:/app/.env
logging:
driver: json-file
options:
max-size: "10m"
max-file: "3"