---
description: Understand what you can do with the Volumes view on Docker Dashboard
keywords: Docker Desktop Dashboard, manage, containers, gui, dashboard, volumes, user manual
title: Explore the Volumes view in Docker Desktop
linkTitle: Volumes
weight: 30
---
The **Volumes** view in Docker Desktop lets you create, inspect, delete, clone, empty, export, and import [Docker volumes](/manuals/engine/storage/volumes.md). You can also browse files and folders in volumes and see which containers are using them.
## View your volumes
You can view the following information about your volumes:
- Name: The name of the volume.
- Status: Whether the volume is in-use by a container or not.
- Created: How long ago the volume was created.
- Size: The size of the volume.
- Scheduled exports: Whether a scheduled export is active or not.
By default, the **Volumes** view displays a list of all the volumes.
You can filter and sort volumes as well as modify which columns are displayed by
doing the following:
- Filter volumes by name: Use the **Search** field.
- Filter volumes by status: To the right of the search bar, filter volumes by
**In use** or **Unused**.
- Sort volumes: Select a column name to sort the volumes.
- Customize columns: To the right of the search bar, choose what volume
information to display.
## Create a volume
You use the following steps to create an empty volume. Alternatively, if you
[start a container with a volume](/manuals/engine/storage/volumes.md#start-a-container-with-a-volume)
that doesn't yet exist, Docker creates the volume for you.
To create a volume:
1. In the **Volumes** view, select the **Create** button.
2. In the **New Volume** modal, specify a volume name, and then select
**Create**.
To use the volume with a container, see [Use volumes](/manuals/engine/storage/volumes.md#start-a-container-with-a-volume).
## Inspect a volume
To explore the details of a specific volume, select a volume from the list. This
opens the detailed view.
The **Container in-use** tab displays the name of the container using the
volume, the image name, the port number used by the container, and the target. A
target is a path inside a container that gives access to the files in the
volume.
The **Stored data** tab displays the files and folders in the volume and the
file size. To save a file or a folder, right-click on the file or folder to
display the options menu, select **Save as...**, and then specify a location to
download the file.
To delete a file or a folder from the volume, right-click on the file or folder
to display the options menu, select **Delete**, and then select **Delete** again
to confirm.
The **Exports** tab lets you [export the volume](#export-a-volume).
## Clone a volume
Cloning a volume creates a new volume with a copy of all of the data from the
cloned volume. When cloning a volume used by one or more running containers, the
containers are temporarily stopped while Docker clones the data, and then
restarted when the cloning process is completed.
To clone a volume:
1. Sign in to Docker Desktop. You must be signed in to clone a volume.
2. In the **Volumes** view, select the **Clone** icon in the **Actions** column
for the volume you want to clone.
3. In the **Clone a volume** modal, specify a **Volume name**, and then select
**Clone**.
## Delete one or more volumes
Deleting a volume deletes the volume and all its data. When a container is using
a volume, you can't delete the volume, even if the container is stopped.
You must first stop and remove any containers
using the volume before you can delete the volume.
To delete a volume:
1. In the **Volumes** view, select **Delete** icon in the **Actions** column for
the volume you want to delete.
2. In the **Delete volume?** modal, select **Delete forever**.
To delete multiple volumes:
1. In the **Volumes** view, select the checkbox next to all the volumes you want
to delete.
2. Select **Delete**.
3. In the **Delete volumes?** modal, select **Delete forever**.