Nebius Israel
Contact usConsole
  • GPU
  • Docs
© 2023 Nebius Israel Ltd
Container Registry
  • Getting started
  • Container Solution
  • Access management
  • Pricing policy
  • Troubleshooting
  • Questions and answers
  1. Step-by-step guides
  2. Managing a Docker image
  3. Getting information about available Docker images

Getting information about available Docker images

  • Getting a list of Docker images in a registry
  • Getting information about a Docker image

Find out how to get:

  • A 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 don't have the Nebius Israel command line interface 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 |
+----------------------+---------------------+----------------------------+------+-----------------+
| crp9vik7sgeco7emq743 | 2019-01-17 17:00:48 | crph8pf7irvcu3p7gjpb/myimg |  111 | 30.7 MB         |
+----------------------+---------------------+----------------------------+------+-----------------+

To get a list of the 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 crphc7nnrvhlg73oeiv5

Result:

id:crphc7nnrvhlg73oeiv5
name: crpd50616s9a2t7gr8mi/ubuntu
digest: sha256:035ac8e1bd9c49871a2fd76ccb3c4b0f84e7eee775919ccd345337ec7b49f80d
...
  size: "163"
tags:
- hello

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

© 2023 Nebius Israel Ltd
In this article:
  • Getting a list of Docker images in a registry
  • Getting information about a Docker image