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
    • Gateway to Russia
    • Cloud for Startups
    • Education and Science
  • Blog
  • Pricing
  • Documentation
Yandex project
© 2025 Yandex.Cloud LLC
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:

  • Getting a list of registries in a folder
  • Getting detailed information about a registry
  1. Step-by-step guides
  2. Managing a registry
  3. Getting information about existing registries

Getting information about existing registries

Written by
Yandex Cloud
Updated at May 5, 2025
  • Getting a list of registries in a folder
  • Getting detailed information about a registry

Find out how to get:

  • Folder registry list.
  • Detailed information about a registry.

Getting a list of registries in a folderGetting a list of registries in a folder

CLI
API

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

The folder specified when creating the CLI profile is used by default. To change the default folder, use the yc config set folder-id <folder_ID> command. You can specify a different folder using the --folder-name or --folder-id parameter.

Get a list of registries in the default folder:

yc container registry list

Result:

+----------------------+--------+----------------------+
|          ID          |  NAME  |      FOLDER ID       |
+----------------------+--------+----------------------+
| crpd50616s9a******** | my-reg | b1g88tflru0e******** |
+----------------------+--------+----------------------+

To get a list of registries in the default folder, use the list method for the Registry resource.

Getting detailed information about a registryGetting detailed information about a registry

To access a registry, use the id or name parameters from the previous step.

CLI
API

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

The folder specified when creating the CLI profile is used by default. To change the default folder, use the yc config set folder-id <folder_ID> command. You can specify a different folder using the --folder-name or --folder-id parameter.

Get detailed information about the registry:

yc container registry get my-reg

Result:

id: crpd50616s9a********
folder_id: b1g88tflru0e********
name: my-reg
status: ACTIVE
created_at: "2019-01-09T14:34:06.601Z"

You can get detailed information about a registry by using the get method for the Registry resource.

Was the article helpful?

Previous
Deleting a Helm chart from a registry
Next
Getting information about a registry access policy
Yandex project
© 2025 Yandex.Cloud LLC