36 lines
1.1 KiB
YAML
36 lines
1.1 KiB
YAML
services:
|
|
nettrak:
|
|
container_name: NetTrak
|
|
build: .
|
|
restart: unless-stopped
|
|
|
|
environment:
|
|
- NETTRAK_DB_PATH=/data/nettrak.db
|
|
- NETTRAK_SUBNET=192.168.2.0/24
|
|
- NETTRAK_TOP_PORTS=100
|
|
# Optional explicit port set/range. Example catches 8989 and many app ports:
|
|
# - NETTRAK_PORT_SPEC=1-10000
|
|
- NETTRAK_SCAN_WORKERS=12
|
|
- NETTRAK_PORT_PROBE_TIMEOUT=0.4
|
|
- NETTRAK_ENABLE_OS_DETECTION=0
|
|
- NETTRAK_ENABLE_DOCKER_INSIGHTS=0
|
|
# Set this if Docker published ports are bound to 0.0.0.0 and host IP cannot be inferred.
|
|
# - NETTRAK_DOCKER_HOST_IP=192.168.2.10
|
|
|
|
# For best host discovery on Linux, you can switch to host mode.
|
|
# If you do that, remove the `ports` section and ensure APP_PORT is free.
|
|
# network_mode: host
|
|
|
|
# Helps nmap discover MAC addresses/OS details in containerized runs.
|
|
cap_add:
|
|
- NET_ADMIN
|
|
- NET_RAW
|
|
|
|
ports:
|
|
- "1337:1337"
|
|
|
|
volumes:
|
|
- ./data:/data
|
|
# Optional: mount Docker socket to include container-published host ports in results.
|
|
# - /var/run/docker.sock:/var/run/docker.sock:ro
|