---
title: "Download a Docker image from Container Registry"
sidebar_label: "Download a Docker image"
sidebar_position: 3
description: "How to download a Docker image from the registry"
---

import Formbricks from '@theme/MDXComponents/Formbricks'

# Download a Docker image from Container Registry

1. [Get a token](/craas/tokens/generate-token.mdx).
2. [Log in to the registry](/craas/images/use-docker.mdx).
3. Download an image from the registry:

   ```bash
   docker pull cr.selcloud.ru/<registry>/<image>:<tag>
   ```

   Specify:

   * `<registry>` — the name of the registry from which you need to download the image;
   * `<image>` — the image name, which can be viewed using `docker image list`
   * `<tag>` — the tag.

<Formbricks />
