Skip to content

Repositories

The Repositories page allows you to view and manage the container images and Helm charts stored in your private registry.

The Repositories table displays a list of all repositories. The table includes the following information:

ColumnDescription
NameThe name of the repository.
Latest TagThe most recent tag associated with the repository.
SizeThe total size of the repository.
ManifestsThe number of manifests (versions/tags) in the repository. Clicking the external link icon opens a detailed list of manifests.

You can upload Docker images and Helm charts to the repository via your local terminal.

  1. Tag the image:

    Terminal window
    docker tag <repository>:<tag> <registry_url>/<repository>:<tag>
  2. Push the image:

    Terminal window
    docker push <registry_url>/<repository>:<tag>
  3. After uploading, navigate to the Applications Store to update the Helm chart configuration to use your custom image:

    # Docker image
    image:
    # -- Docker image registry
    repository: <registry_url>/<repository>
    # -- Docker pull policy
    pullPolicy: IfNotPresent
    # -- Docker image tag, overrides the image tag whose default is the chart appVersion.
    tag: <tag>

To view the specific versions or tags within a repository:

  1. Locate the repository in the list.
  2. Click the external link icon in the Manifests column.
  3. A side panel will open displaying all manifests (tags) for that repository.

You can inspect the details of a specific image or chart version.

  1. Open the Manifests list for a repository.
  2. Click on any manifest item.
  3. A dialog will appear showing detailed information:
    • Charts: Displays version, description, dependencies, maintainers, and source links.
    • Images: Displays author, creation time, architecture, and container configuration (ports, entrypoint, commands, etc.).

You can delete specific versions (manifests) from a repository.

  1. Open the Manifests list for a repository.
  2. Locate the specific tag/version you want to remove.
  3. Click the Delete button (trash icon).
  4. Confirm the deletion to permanently remove the manifest.