🐳 RustScan

🤖 The Modern Port Scanner 🤖

Docker Ready 20,204 stars
1. Pull Image docker pull bee-san/RustScan:latest
2. 1-Click Launch Command docker run -d --name RustScan --restart always bee-san/RustScan:latest
contributing.Dockerfile
# Dockerfile for RustScan development environment
# Provides a containerized setup with Rust, nmap, and development tools
FROM rust
# Install nmap first.
RUN apt-get update -qy && apt-get install -qy nmap
# Then install rustfmt for code formatting and clippy for linting.
RUN rustup component add rustfmt clippy