SARIFVisualizer — React SARIF viewer: upload files, filter, search, charts. docker-ready image.
978
A modern, responsive web application for visualizing Static Analysis Results Interchange Format (SARIF) files. Built with React, TypeScript, and Tailwind CSS.
# Pull the latest image
docker pull mykolaa25/sarifvisualizer:latest
# Run the container
docker run -d -p 99:80 --name sarifvisualizer mykolaa25/sarifvisualizer:latest
Access the application at http://localhost:99
Create a docker-compose.yml file:
version: '3.8'
services:
sarifvisualizer:
image: mykolaa25/sarifvisualizer:latest
container_name: sarifvisualizer
ports:
- "99:80"
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost/"]
interval: 30s
timeout: 10s
retries: 3
Then run:
docker-compose up -d
This visualizer supports SARIF 2.1.0 specification and works with:
Access the Application
Upload SARIF File
.sarif or .json fileExplore Your Results
To use a different host port (e.g., port 8080):
docker run -d -p 8080:80 --name sarifvisualizer mykolaa25/sarifvisualizer:latest
Access at http://localhost:8080
The container runs a static web application and requires no environment variables.
This project is licensed under the MIT License.
If you find this tool useful, consider supporting the project:
Made with ❤️ for the security community
Content type
Image
Digest
sha256:44c59aefd…
Size
20.3 MB
Last updated
9 months ago
docker pull mykolaa25/sarifvisualizer