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:
@@ -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"
|
||||
Reference in New Issue
Block a user