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 repositories
      • Creating a repository
    • 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 repositories in a registry
  • Getting information about a repository
  1. Step-by-step guides
  2. Managing a repository
  3. Getting information about existing repositories

Getting information about existing repositories

Written by
Yandex Cloud
Updated at August 10, 2026
View in Markdown
  • Getting a list of repositories in a registry
  • Getting information about a repository

Getting a list of repositories in a registryGetting a list of repositories in a registry

CLI
API

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

The folder used by default is the one specified when creating the CLI profile. To change the default folder, use the yc config set folder-id <folder_ID> command. You can also specify a different folder for any command using --folder-name or --folder-id. If you access a resource by its name, the search will be limited to the default folder. If you access a resource by its ID, the search will be global, i.e., through all folders based on access permissions.

  1. See the description of the CLI command for getting a list of repositories:

    yc container repository list --help
    
  2. Get a list of repositories.

    • To get a list of all repositories in all registries in the current folder, run this command:

      yc container repository list
      

      Result:

      +----------------------+-----------------------------+
      |          ID          |            NAME             |
      +----------------------+-----------------------------+
      | crp8bu81b5af******** | crp0pmf1n68t********/ubuntu |
      | crps9c63evii******** | crpl3738e9v1********/ubuntu |
      +----------------------+-----------------------------+
      
    • To get a list of all repositories in a particular registry, run this command:

      yc container repository list --registry-id <registry_ID>
      

      Result:

      +----------------------+-----------------------------+
      |          ID          |            NAME             |
      +----------------------+-----------------------------+
      | crp8bu81b5af******** | crp0pmf1n68t********/ubuntu |
      +----------------------+-----------------------------+
      

To get a list of repositories in a registry, use the List method for the Repository resource.

Note

The repository appears in the list as soon as you push at least one Docker image to it.

Getting information about a repositoryGetting information about a repository

CLI
API
  1. See the description of the CLI command for getting repository information:

    yc container repository get --help
    
  2. Get information about the repository.

    • By repository ID:

      yc container repository get --id <repository_ID>
      

      Result:

      name: crp0pmf1n68t********/ubuntu
      id: crp8bu81b5af********
      
    • By repository name:

      yc container repository get --name <repository_name>
      

      Result:

      name: crp0pmf1n68t********/ubuntu
      id: crp8bu81b5af********
      

      You can specify both the full Docker image name and prefixes. For example, you can get information about the crpvplula8p3********/myproject/myservice repository by specifying crpvplula8p3********/myproject/myservice, crpvplula8p3********/myproject, or crpvplula8p3********.

Get information about the repository.

  • By repository ID:

    Use the Get method for the Repository resource. Specify the repository ID in the repositoryId property.

  • By repository name:

    Use the GetByName method for the Repository resource. Specify the repository name in the repositoryName property.

You can get a list of repositories in a registry by using the List method for the Repository resource.

Was the article helpful?

Previous
Deleting a registry
Next
Creating a repository
© 2026 Direct Cursus Technology L.L.C.