Yandex Cloud
Search
Discuss with expertTry it for free
  • Customer Stories
  • Documentation
  • Blog
  • All Services
    • Cloud Interconnect
    • Cloud Backup
    • Cloud Registry
    • Yandex AI Studio
    • Compute Cloud
    • Object Storage
    • Managed Service for Kubernetes®
    • Yandex BareMetal
    • Smart Web Security
    • Security Deck
    • Managed Service for PostgreSQL
    • Managed Service for ClickHouse®
    • Monium
    • Cloud CDN
    • Network Load Balancer
    • Virtual Private Cloud
    • Cloud DNS
    • Application Load Balancer
    • Yandex Cloud Video
    • Stackland
    • Yandex Cloud Router
    • Yandex Managed Service for Trino
    • Managed Service for MySQL®
    • Managed Service for Valkey™
    • Managed Service for Apache Spark™
    • Yandex StoreDoc
    • Managed Service for OpenSearch
    • Managed Service for Apache Kafka®
    • Data Transfer
    • Yandex MPP Analytics Engine for PostgreSQL
    • Yandex Managed Service for Apache Airflow®
    • Data Processing
    • Yandex MetaData Hub
    • Managed Service for YDB
    • Managed Service for Sharded PostgreSQL
    • Managed Service for YTsaurus
    • Yandex WebSQL
    • DataLens
    • Yandex Search API
    • SpeechSense
    • SpeechKit
    • DataSphere
    • Vision OCR
    • Translate
    • Yandex Identity Hub
    • Key Management Service
    • Certificate Manager
    • Yandex Lockbox
    • Audit Trails
    • SmartCaptcha
    • Cloud Desktop
    • Yandex SIEM
    • SourceCraft Code Assistant
    • Container Registry
    • Managed Service for GitLab
    • Managed Service for Prometheus®
    • Cloud Functions
    • API Gateway
    • Yandex Cloud Postbox
    • Message Queue
    • Serverless Integrations
    • IoT Core
    • Data Streams
    • Serverless Containers
    • Cloud Notification Service
    • Yandex Query
    • Identity and Access Management
    • Yandex Cloud Console
    • Resource Manager
    • Yandex Cloud Billing
    • Yandex Cloud Quota Manager
    • Cloud Apps
  • System Status
  • Marketplace
    • Featured
    • Infrastructure & Network
    • Data Platform
    • AI for business
    • Security
    • DevOps tools
    • Serverless
    • Monitoring & Resources
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Center for Technologies and Society
    • Yandex Cloud Partner program
    • Price calculator
    • Pricing plans
  • Customer Stories
  • Documentation
  • Blog
© 2026 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 a registry name
  • Updating a registry label
  • 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 August 3, 2026
View in Markdown
  • Updating a registry name
  • Updating a registry label
  • Configuring access for IP addresses

Find out how to update:

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

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

Updating a registry nameUpdating a registry name

Management console
CLI
API

To update the name of a registry:

  1. In the management console, select the folder containing the registry.
  2. Navigate to Container Registry.
  3. Click next to the registry you want to update.
  4. In the menu that opens, click Edit.
  5. In the window that opens, enter the registry name.
  6. Optionally, update labels.
  7. Click Edit.

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

Update 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 update a registry name, use the update method for the Registry resource.

Updating a registry labelUpdating a registry label

CLI
API

Update the registry label (do not confuse it 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 update 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 registry access:

  1. In the management console, select the folder containing the registry.
  2. Navigate to Container Registry.
  3. Click the registry name, select Access for IP address, and click Set.
  4. Click Add and specify the IP address and its permission for the registry: PULL to pull Docker images from the registry or PUSH to push them to the registry.
  5. Click next to the IP address whose access permissions you want to remove.
  6. Click Save.

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

Add the IP address to grant access:

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

Remove the IP address 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 access permissions, use the updateIpPermission method for the Registry resource.

Was the article helpful?

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