Prowler Local Server - API: the JSON API and Task Runner components of Prowler
1M+
Prowler is the Open Cloud Security platform trusted by thousands to automate security and compliance in any cloud environment — AWS, Azure, Google Cloud, Kubernetes, M365, GitHub and more.
Learn more at prowler.com · Join our Slack community
All Prowler images are built from a single repository — github.com/prowler-cloud/prowler — and published together on every release.
| Image | What it is | Dockerfile |
|---|---|---|
prowlercloud/prowler | Prowler CLI. Runs scans from your terminal, a CI job, a Kubernetes Job or any container platform. | Dockerfile |
prowlercloud/prowler-api | Prowler Local Server — API. Django REST backend plus the Celery worker and scheduler that run scans and store results. | api/Dockerfile |
prowlercloud/prowler-ui | Prowler Local Server — UI. Next.js web interface for launching scans and exploring findings. | ui/Dockerfile |
prowlercloud/prowler-mcp | Prowler MCP. Gives AI assistants access to the Prowler ecosystem over the Model Context Protocol. | mcp_server/Dockerfile |
toniblyx/prowler | Legacy home of the Prowler CLI image. Still mirrored on every release for backwards compatibility. New deployments should use prowlercloud/prowler. | Dockerfile |
All images are published for linux/amd64 and linux/arm64.
| Tag | Meaning |
|---|---|
stable | Always points to the latest stable release. Recommended for production. |
<x.y.z> | A specific release, e.g. 5.14.0. Immutable. |
latest | Built from the master branch on every merge. Not a stable version. |
<short-sha> | A specific master commit (prowler-api, prowler-ui and prowler-mcp only). |
v3-* and v4-* tags on prowlercloud/prowler are frozen historical artifacts of Prowler v3/v4 and no longer receive updates.
The Prowler CLI image is also available on AWS Public ECR: public.ecr.aws/prowler-cloud/prowler.
curl -LO https://raw.githubusercontent.com/prowler-cloud/prowler/refs/heads/master/docker-compose.yml
curl -LO https://raw.githubusercontent.com/prowler-cloud/prowler/refs/heads/master/.env
docker compose up -d
Then open http://localhost:3000 and sign up with your email and password.
Full guide: Prowler Local Server installation
docker run -ti --rm \
-v /your/local/dir/prowler-output:/home/prowler/output \
--name prowler \
--env AWS_ACCESS_KEY_ID \
--env AWS_SECRET_ACCESS_KEY \
--env AWS_SESSION_TOKEN \
prowlercloud/prowler:stable aws
Swap aws for azure, gcp, kubernetes, m365 or github to scan another provider. The CLI is also on PyPI: pip install prowler.
Full guide: Prowler CLI installation
# STDIO mode (for local MCP clients)
docker run --rm -i prowlercloud/prowler-mcp
# HTTP mode (for remote access)
docker run --rm -p 8000:8000 prowlercloud/prowler-mcp \
--transport http --host 0.0.0.0 --port 8000
Full guide: Prowler MCP installation
Note on architecture: if your workstation's architecture is incompatible, set
DOCKER_DEFAULT_PLATFORM=linux/amd64or pass--platform linux/amd64to your Docker command.
Hundreds of built-in checks mapped to the frameworks you get audited against — CIS, NIST 800 / CSF, CISA, PCI-DSS, GDPR, HIPAA, FFIEC, SOC2, GXP, FedRAMP, RBI, AWS Well-Architected (Security Pillar), AWS FTR, ENS — plus your own custom frameworks.
For live check, service, framework and category counts, see Prowler Hub.
List what's available for any provider:
prowler <provider> --list-checks
prowler <provider> --list-services
prowler <provider> --list-compliance
prowler <provider> --list-categories
Prowler is licensed under the Apache License 2.0. A copy is available at http://www.apache.org/licenses/LICENSE-2.0.
Content type
Image
Digest
sha256:5e7cdc045…
Size
699.5 MB
Last updated
about 12 hours ago
docker pull prowlercloud/prowler-api