Skip to main content

Using the Image Repository

Updated at:2025-12-10 11:43:25

This document outlines how to manage and use the Image Repository on the Alaya NeW platform, covering the following key topics.

Storage Management

To view your current storage provisioned under your enterprise account, click on Resource Center in the top right corner and then select Storage Management. This area allows for the management of file storage, including quota management and resource release.

1739431477628

Using the Image Repository

Access the details of the image repository to retrieve its address:

1739431477628

Note

You must have the Docker client installed.

Uploading Local Images to the Image Repository

View Local Images

docker images   ##List all local images

Log in to the Image Repository

docker login  {repository-address} -u your-username -p your-password 

Upload an Image to the Image Repository

docker  tag volcanosh/vc-scheduler:v1.7.0 {repository-address}/{project}/volcanosh/vc-scheduler:v1.7.0
docker push {repository-address}/{project}/volcanosh/vc-scheduler:v1.7.0 ##Push Image

Pulling Images from the Image Repository

Method 1: Using Kubernetes YAML Files

Refer to theCreating Secrets - Using Secrets

Method 2: Pulling via Docker Login

Log in to the Image Repository

docker login  {repository-address} -u your-username -p your-password 

Pull the Image

docker pull {repository-address}/{project-name}/openssh-server:latest