prowlercloud/prowler-api

By prowlercloud

Updated about 12 hours ago

Prowler Local Server - API: the JSON API and Task Runner components of Prowler

Image
Security
0

1M+

prowlercloud/prowler-api repository overview

Prowler

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

GitHub Version PyPI License


Prowler container images

All Prowler images are built from a single repository — github.com/prowler-cloud/prowler — and published together on every release.

ImageWhat it isDockerfile
prowlercloud/prowlerProwler CLI. Runs scans from your terminal, a CI job, a Kubernetes Job or any container platform.Dockerfile
prowlercloud/prowler-apiProwler Local Server — API. Django REST backend plus the Celery worker and scheduler that run scans and store results.api/Dockerfile
prowlercloud/prowler-uiProwler Local Server — UI. Next.js web interface for launching scans and exploring findings.ui/Dockerfile
prowlercloud/prowler-mcpProwler MCP. Gives AI assistants access to the Prowler ecosystem over the Model Context Protocol.mcp_server/Dockerfile
toniblyx/prowlerLegacy 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.

Tags

TagMeaning
stableAlways points to the latest stable release. Recommended for production.
<x.y.z>A specific release, e.g. 5.14.0. Immutable.
latestBuilt 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.

Other registries

The Prowler CLI image is also available on AWS Public ECR: public.ecr.aws/prowler-cloud/prowler.


Quick start

Prowler Local Server (UI + API)

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

Prowler CLI

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

Prowler MCP

# 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/amd64 or pass --platform linux/amd64 to your Docker command.


What Prowler covers

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

Documentation and support

License

Prowler is licensed under the Apache License 2.0. A copy is available at http://www.apache.org/licenses/LICENSE-2.0.

Tag summary

Content type

Image

Digest

sha256:5e7cdc045

Size

699.5 MB

Last updated

about 12 hours ago

docker pull prowlercloud/prowler-api