For the complete documentation index, see llms.txt. This page is also available as Markdown.

Understanding the Repositories Tab in Ace Container Registry

Once you've created a registry in AceCloud, the Repositories tab becomes the central place to manage and view all your container repositories. This article explains the functionality of this tab, including how to push Docker and Helm charts to your registry.

1
  • Log in to the AceCloud Console.

  • Select your Project and Region.

  • Go to Container Registry, click Overview.

  • By default, the Repositories tab is selected.

2

What You’ll See in the Repositories Tab

  • A list of all repositories (for example: nginx, app-backend, helm-charts)

  • For each repository:

    • Tags (versions) of the container images

    • Last Updated Time

    • Size

    • Vulnerability Scan Status (if enabled)

3

Push Instructions (Docker & Helm)

At the top of the Repositories tab, you’ll find push instructions for both Docker and Helm.

Docker Push Command

Tag an image for this project:

docker tag SOURCE_IMAGE[:TAG] ace-registry-noi.acecloud.ai/test_registry/REPOSITORY[:TAG]

Push an image to this project:

docker push ace-registry-noi.acecloud.ai/test_registry/REPOSITORY[:TAG]

Helm Push Command

Package a chart for this project:

helm package CHART_PATH

Push a chart to this project:

helm push CHART_PACKAGE oci://ace-registry-noi.acecloud.ai/test_registry

Last updated