0. REQUIREMENTS
Before you run
Install Docker Desktop (macOS/Windows) or Docker Engine (Linux/Servers). MistSeeker requires only Docker and access to your local source directory.
$ docker --versionMistSeeker runs fully on-premise. Your source code and analysis data stay inside your environment.

LOCAL INSTALLATION
ON-PREM
DOCKER-FIRST0. REQUIREMENTS
Install Docker Desktop (macOS/Windows) or Docker Engine (Linux/Servers). MistSeeker requires only Docker and access to your local source directory.
$ docker --version1. PULL IMAGE
$ docker pull tongro2025/mistseeker2. QUICK START (FREE)
Free mode provides issue existence, total issue count, and core stability signals (COI/ORI/GSS/GSI) without sending code externally.
macOS / Linux
docker run -it --rm \
-v "$(pwd)":/app/code \
-v "$(pwd)":/app/out \
tongro2025/mistseeker:latest \
analyze --input-root /app/code \
--output-json /app/out/mistseeker_report.json \
--output-image /app/out/mistseeker_report.pngWindows (PowerShell)
docker run -it --rm \
-v "${PWD}:/app/code" \
-v "${PWD}:/app/out" \
tongro2025/mistseeker:latest \
analyze --input-root /app/code \
--output-json /app/out/mistseeker_report.json \
--output-image /app/out/mistseeker_report.pngWindows (CMD)
docker run -it --rm ^
-v "%CD%:/app/code" ^
-v "%CD%:/app/out" ^
tongro2025/mistseeker:latest ^
analyze --input-root /app/code ^
--output-json /app/out/mistseeker_report.json ^
--output-image /app/out/mistseeker_report.png3. PRO MODE
Pro mode unlocks line-level issue location, expanded risk context, and richer report detail for team and enterprise workflows.
macOS / Linux
docker run -it --rm \
-e MISTSEEKER_LICENSE_KEY=YOUR_LICENSE_KEY \
-v "$(pwd)":/app/code \
-v "$(pwd)/reports":/app/out \
tongro2025/mistseeker:latest \
analyze --input-root /app/code \
--output-json /app/out/mistseeker_report.json \
--output-image /app/out/mistseeker_report.pngWindows (PowerShell)
docker run -it --rm \
-e MISTSEEKER_LICENSE_KEY=YOUR_LICENSE_KEY \
-v "${PWD}:/app/code" \
-v "${PWD}/reports:/app/out" \
tongro2025/mistseeker:latest \
analyze --input-root /app/code \
--output-json /app/out/mistseeker_report.json \
--output-image /app/out/mistseeker_report.pngWindows (CMD)
docker run -it --rm ^
-e MISTSEEKER_LICENSE_KEY=YOUR_LICENSE_KEY ^
-v "%CD%:/app/code" ^
-v "%CD%/reports:/app/out" ^
tongro2025/mistseeker:latest ^
analyze --input-root /app/code ^
--output-json /app/out/mistseeker_report.json ^
--output-image /app/out/mistseeker_report.png4. OUTPUT FILES
5. SECURITY
Billing and payment information is handled by Paddle (Merchant of Record). For policy details, review the Privacy Policy.
FAQ
No. Docker is the only supported distribution path to keep runtime behavior consistent across operating systems and environments.
Verify key typo, subscription status, and environment variable name.
-e MISTSEEKER_LICENSE_KEY=YOUR_LICENSE_KEY
Check volume mount syntax for your shell ($(pwd),${PWD},%CD%) and confirm directory permissions.
SUPPORT
For technical support, licensing, and enterprise onboarding, contact Convia directly.