Yandex Cloud
Search
Contact UsGet started
  • Blog
  • Pricing
  • Documentation
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • ML & AI
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Customer Stories
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Education and Science
    • Yandex Cloud Partner program
  • Blog
  • Pricing
  • Documentation
© 2025 Direct Cursus Technology L.L.C.
Yandex Container Registry
  • Getting started
    • All guides
    • Installing and configuring Docker
    • Authentication in Container Registry
      • Getting information about existing registries
      • Getting information about a registry access policy
      • Creating a registry
      • Configuring access to a registry
      • Updating a registry
      • Deleting a registry
    • Scanning Docker images for vulnerabilities
    • Creating a trigger for a registry
  • Yandex Container Solution
  • Access management
  • Pricing policy
  • Terraform reference
  • Monitoring metrics
  • Audit Trails events
  • Troubleshooting
  • FAQ

In this article:

  • Updating the name of a registry
  • Updating the label of a registry
  • Configuring access for IP addresses
  1. Step-by-step guides
  2. Managing a registry
  3. Updating a registry

Updating a registry

Written by
Yandex Cloud
Updated at March 6, 2025
  • Updating the name of a registry
  • Updating the label of a registry
  • Configuring access for IP addresses

Find out how to change:

  • Registry name.
  • Registry label.
  • Access for IP addresses.

To access a registry, use its ID or name. For information about how to get the registry ID or name, see Getting information about existing registries.

Updating the name of a registryUpdating the name of a registry

Management console
CLI
API

To update the name of a registry:

  1. Open Container Registry in the folder to update the registry in.
  2. Click in the line of the registry to change.
  3. In the menu that opens, click Edit.
  4. In the window that opens, enter the registry name.
  5. (Optional) Update labels.
  6. Click Edit.

If you do not have the Yandex Cloud CLI yet, install and initialize it.

Change the registry name:

yc container registry update my-reg --new-name new-reg

Result:

id: crp3qleutgks********
folder_id: b1g88tflru0e********
name: new-reg
status: ACTIVE
created_at: "2019-01-15T14:39:48.154Z"

To edit a registry name, use the update method for the Registry resource.

Updating the label of a registryUpdating the label of a registry

CLI
API

Change the registry label (not to be confused with Docker image tags):

yc container registry update new-reg --labels new_label=test_label

Result:

id: crp3qleutgks********
folder_id: b1g88tflru0e********
name: new-reg
status: ACTIVE
created_at: "2019-01-15T14:39:48.154Z"
labels:
  new_label: test_label

To edit a registry label, use the update method for the Registry resource.

Configuring access for IP addressesConfiguring access for IP addresses

Management console
CLI
API

To add or delete an IP address and configure access to a registry:

  1. Open Container Registry in the folder to update the registry in.
  2. Click the name of the registry you need, select Access for IP address, and click Set.
  3. Click Add and specify the IP address and permission to perform an action with the registry: PULL to pull Docker images from the registry or PUSH to push them to the registry.
  4. Click in the line of the IP address from which you need to delete the permissions.
  5. Click Save.

If you do not have the Yandex Cloud CLI yet, install and initialize it.

Add the IP address to grant permissions to:

yc container registry add-ip-permissions \
  --name my-reg \
  --pull <IP_address_with_PULL_access> \
  --push <IP_address_with_PUSH_access>

Remove the IP permission:

yc container registry remove-ip-permissions \
  --name my-reg \
  --pull <IP_address_with_PULL_access> \
  --push <IP_address_with_PUSH_access>

To add, update, or delete an IP address and configure its registry permissions, use the updateIpPermission method for the Registry resource.

Was the article helpful?

Previous
Configuring access to a registry
Next
Deleting a registry
© 2025 Direct Cursus Technology L.L.C.