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 Cloud Registry
  • Getting started
    • All guides
    • Creating a registry
        • Installing and configuring Docker
        • Authentication in Cloud Registry
        • Creating a Docker image
        • Pushing a Docker image to a registry
        • Pulling a Docker image from a registry
  • Access management
  • Pricing policy
  • CLI reference
  • Audit Trails events
  1. Step-by-step guides
  2. Managing artifacts
  3. Docker image
  4. Pushing a Docker image to a registry

Pushing a Docker image to a registry in Cloud Registry

Written by
Yandex Cloud
Updated at February 7, 2025

These instructions describe how to push a local Docker image to a registry.

Note

To push an image, you need to configure Docker and get authenticated in the registry.

To push a Docker image to the registry, you need the cloud-registry.artifacts.pusher role or higher.

CLI
  1. View the list of available Docker images:

    docker image list
    

    Result:

    REPOSITORY                                  TAG     IMAGE ID      CREATED       SIZE
    registry.yandexcloud.net/crpd50616s9a********/ubuntu       hello   50ff********  23 hours ago  86.7MB
    ubuntu                                      latest  1d9c********  2 weeks ago   86.7MB
    
  2. (Optional) Assign a URL to the Docker image using the following format: registry.yandexcloud.net/<registry_ID>/<Docker_image_name>:<tag>:

    docker tag ubuntu \
    registry.yandexcloud.net/<registry_ID>/ubuntu:hello
    

    Note

    You can only push Docker images to Cloud Registry if they have a URL in this format: registry.yandexcloud.net/<registry_ID>/<Docker_image_name>:<tag>.

  3. Push the required Docker image to the registry:

    docker push registry.yandexcloud.net/<registry_ID>/ubuntu:hello
    

Was the article helpful?

Previous
Creating a Docker image
Next
Pulling a Docker image from a registry
Yandex project
© 2025 Yandex.Cloud LLC