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 Docker images
      • Creating a Docker image
      • Pushing a Docker image to a registry
      • Pulling a Docker image from a registry
      • Deleting a Docker image from 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 Docker images in a registry
  • Getting information about a Docker image
  1. Step-by-step guides
  2. Managing a Docker image
  3. Getting information about existing Docker images

Getting information about existing Docker images

Written by
Yandex Cloud
Updated at February 12, 2025
  • Getting a list of Docker images in a registry
  • Getting information about a Docker image

Find out how to get:

  • List of Docker images in a registry.
  • Detailed information about a Docker image.

Getting a list of Docker images in a registryGetting a list of Docker images in a registry

CLI
API

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

Get a list of Docker images in the current registry:

yc container image list

Result:

+----------------------+---------------------+----------------------------+------+-----------------+
|          ID          |       CREATED       |            NAME            | TAGS | COMPRESSED SIZE |
+----------------------+---------------------+----------------------------+------+-----------------+
| crp9vik7sgec******** | 2019-01-17 17:00:48 | crph8pf7irvc********/myimg |  111 | 30.7 MB         |
+----------------------+---------------------+----------------------------+------+-----------------+

To get a list of Docker images in a registry, use the list method for the Image resource.

Getting information about a Docker imageGetting information about a Docker image

CLI
API

Get detailed information about a Docker image using the id from the previous item:

yc container image get crphc7nnrvhl********

Result:

id:crphc7nnrvhl********
name: crpd50616s9a********/ubuntu
digest: sha256:035ac8e1bd9c49871a2fd76ccb3c4b0f84e7eee775919ccd345337ec********
...
  size: "163"
tags:
- hello

To get detailed information about a Docker image, use the get method for the Image resource.

Was the article helpful?

Previous
Authentication in Container Registry
Next
Creating a Docker image
© 2025 Direct Cursus Technology L.L.C.