My Network Scanner scans all devices in your network, identifies and provides a WebUI to manage
10K+
Your Family's User-Friendly Network Scanner - A comprehensive LAN scanner application with web interface, device discovery, and advanced analysis capabilities.
GitHub Repository: https://github.com/fxerkan/my_network_scanner
services:
my-network-scanner:
image: fxerkan/my_network_scanner:latest
container_name: my-network-scanner
ports:
- "5883:5883"
volumes:
- ./data:/app/data
- ./config:/app/config
environment:
- FLASK_ENV=production
- LAN_SCANNER_PASSWORD=your-secure-password
restart: unless-stopped
cap_add:
- NET_ADMIN
- NET_RAW
privileged: true
docker run -d \
--name my-network-scanner \
--privileged \
--cap-add=NET_ADMIN \
--cap-add=NET_RAW \
-p 5883:5883 \
-v $(pwd)/data:/app/data \
-v $(pwd)/config:/app/config \
-e LAN_SCANNER_PASSWORD=your-secure-password \
fxerkan/my_network_scanner:latest
Access the application at: http://localhost:5883
/app/data and /app/configThis image supports multiple architectures:
linux/amd64 (x86_64)linux/arm64 (aarch64)| Variable | Description | Default |
|---|---|---|
FLASK_ENV | Flask environment | production |
FLASK_PORT | Web interface port | 5883 |
LAN_SCANNER_PASSWORD | Master password for credential encryption | None |
| Path | Description |
|---|---|
/app/data | Scan results and device data |
/app/config | Configuration files and credentials |
Made with ❤️ & 🤖 by fxerkan
This tool is for educational purposes and monitoring your own network devices only.
Content type
Image
Digest
sha256:47b2e9d03…
Size
249.2 MB
Last updated
12 months ago
docker pull fxerkan/my_network_scanner