Skip to main content

Access the Invicti registries

This document explains how to authenticate with and pull images from the Invicti Docker registries and Docker Hub, which host the Invicti Scan command-line tool Docker image for use in CI/CD integrations.

1. Invicti private registries

Invicti provides two private registries depending on your deployment type:

1.1 On-demand registry

Registry URL: registry.invicti.com

Use case: For Invicti Platform on-demand deployments

Authentication credentials:

  • username: Your Invicti Platform login email address
  • password: Your active Invicti license key
Important

You need these credentials to pull Docker images. Use your CI/CD tool's secret management features to store them securely.

Docker login command:

docker login registry.invicti.com \
-u <your-email@example.com> \
-p <your-license-key>

Pulling the image:

docker pull platform-registry.invicti.com/invicti-platform/invicti-scan-cli

1.2 On-premises Helm registry

Registry URL: platform-registry.invicti.com

Use case: Exclusively for installing and upgrading the Invicti Platform on-premises Helm chart. This registry is not used for pulling Docker images in CI/CD pipelines.

On-premises license key required

This registry requires an on-premises license key. It will not work with an on-demand license key. For all other use cases — including CI/CD integrations — use registry.invicti.com instead.

2. Docker Hub (public registry)

If you prefer not to authenticate or need access to a public version, you can use the official image from Docker Hub.

Docker Hub Image URL: docker.io/invicti/scan-cli

Pulling the image:

docker pull invicti/scan-cli
Important

This public image may have fewer features or a delayed release cycle compared to the private registries. Always verify version compatibility.

Best practices

  • CI/CD security: Store credentials in environment variables or secret managers
  • Least privilege: Use automation-scoped credentials where possible
  • Logout after use (for local testing):
docker logout platform-registry.invicti.com

Need help?

Invicti Support team is ready to provide you with technical help. Go to Help Center

Was this page useful?