---
title: "Delete a Helm chart in Container Registry"
sidebar_label: "Delete a Helm chart"
sidebar_position: 4
description: "How to delete a Helm chart from a registry"
---

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

# Delete a Helm chart in Container Registry

<Tabs queryString="delete-chart">
  <TabItem value="panel" default>
    <TabItemLabel>
      Control panel
    </TabItemLabel>

    1. In the [control panel](https://my.selectel.ru/vpc/default/craas/), on the top menu click **Products** and select **Container Registry**.
    2. Open the **Registries** tab.
    3. In the line of the repository where the Helm chart is stored, click <TrashIcon />.
  </TabItem>

  <TabItem value="docker-cli">
    <TabItemLabel>
      Docker CLI
    </TabItemLabel>

    1. [Authorize in the Docker CLI](/craas/images/use-docker.mdx).

    2. Get a list of Docker images:

       ```bash
       docker image list
       ```

       The response will display a list of repositories and Docker images:

       ```txt
       +----------------------------------+--------+----------------+-----------------+-------------+
       | REPOSITORY                       | TAG    |IMAGE ID        |CREATED          | SIZE        |
       +----------------------------------+--------+----------------+-----------------+-------------+
       | stage.cr.selcloud.org/test/nginx | 9      |   77af4d6b9913 |    6 days ago   |    824.5 MB |
       | cr.selcloud.ru/test/nginx        | latest |   78a85c484f71 |    19 hours ago |    656.2 MB |
       | nginx                            | 9.3    |   5ed6274db6ce |    3 months ago |    218.5 MB |
       | cr.selcloud.ru/test/busybox      | 9.3.5  |   92d3114nv8op |    5 months ago |    1.089 GB |
       +----------------------------------+--------+----------------+-----------------+-------------+
       ```

    3. Find the repository where the Helm chart is stored and copy its `IMAGE ID`.

    4. Delete the repository:

       ```bash
       docker image rm <image_id>
       ```

       Specify `<image_id>` — the Docker image name.
  </TabItem>
</Tabs>

<Formbricks />
