---
title: "Download image"
sidebar_label: "Download image"
sidebar_position: 6
description: "How to download an image from the image storage"
---

import Tabs from '@theme/Tabs'
import TabItem from '@theme/TabItem'
import {TabItemLabel} from '@selectel/docux/components'
import DownloadIcon from '@selectel/docux/icons/download'
import Formbricks from '@theme/MDXComponents/Formbricks'

# Download image

[A custom image](/cloud-servers/images/about-images.mdx#own-images) can be downloaded from the image storage only in the `.raw` format.

If necessary, you can reformat the image on your local computer after downloading.

<Tabs queryString="download-image">
  <TabItem value="panel" default>
    <TabItemLabel>
      Control panel
    </TabItemLabel>

    1. In the [Control panel](https://my.selectel.ru/vpc/default/images/), on the top menu, click **Products** and select **Cloud Servers**.
    2. Go to the **Images** section.
    3. In the image card, click .<DownloadIcon />
  </TabItem>

  <TabItem value="openstack">
    <TabItemLabel>
      OpenStack CLI
    </TabItemLabel>

    1. [Open the OpenStack CLI](/cloud-servers/tools/openstack-cli/).
    2. Download the image:

       ```bash
       openstack image save --file <file_name> <image>
       ```

       Specify:

       * `<file_name>` — the name of the file on the local computer to which the image will be downloaded;
       * `<image>` — the image ID or name. You can view the list using `openstack image list --private`
  </TabItem>
</Tabs>

<Formbricks />
