2016-10-14 18:30:36 -04:00
---
title: "volume prune"
2018-02-08 00:57:41 -05:00
description: "Remove unused local volumes"
2016-11-03 18:48:30 -04:00
keywords: "volume, prune, delete"
2016-10-14 18:30:36 -04:00
---
2016-08-31 12:57:32 -04:00
# volume prune
```markdown
2020-10-02 09:51:01 -04:00
Usage: docker volume prune [OPTIONS]
2016-08-31 12:57:32 -04:00
2018-02-08 00:57:41 -05:00
Remove all unused local volumes
2016-08-31 12:57:32 -04:00
Options:
2017-04-10 14:08:40 -04:00
--filter filter Provide filter values (e.g. 'label=< label > ')
-f, --force Do not prompt for confirmation
--help Print usage
2016-08-31 12:57:32 -04:00
```
2017-02-07 18:42:48 -05:00
## Description
2018-02-08 00:57:41 -05:00
Remove all unused local volumes. Unused local volumes are those which are not referenced by any containers
2016-08-31 12:57:32 -04:00
2017-02-07 18:42:48 -05:00
## Examples
2016-08-31 12:57:32 -04:00
2021-08-21 08:54:14 -04:00
```console
2016-08-31 12:57:32 -04:00
$ docker volume prune
2017-02-07 18:42:48 -05:00
2018-02-08 00:57:41 -05:00
WARNING! This will remove all local volumes not used by at least one container.
2016-08-31 12:57:32 -04:00
Are you sure you want to continue? [y/N] y
Deleted Volumes:
07c7bdf3e34ab76d921894c2b834f073721fccfbbcba792aa7648e3a7a664c2e
my-named-vol
Total reclaimed space: 36 B
```
2022-03-30 09:05:29 -04:00
### <a name=filter></a> Filtering (--filter)
2017-04-10 14:08:40 -04:00
2018-01-02 13:40:23 -05:00
The filtering flag (`--filter`) format is of "key=value". If there is more
2017-04-10 14:08:40 -04:00
than one filter, then pass multiple flags (e.g., `--filter "foo=bar" --filter "bif=baz"` )
The currently supported filters are:
* label (`label=< key > `, `label=<key>=<value>` , `label!=<key>` , or `label!=<key>=<value>` ) - only remove volumes with (or without, in case `label!=...` is used) the specified labels.
The `label` filter accepts two formats. One is the `label=...` (`label=< key > ` or `label=<key>=<value>` ),
which removes volumes with the specified labels. The other
format is the `label!=...` (`label!=< key > ` or `label!=<key>=<value>` ), which removes
volumes without the specified labels.
2017-02-07 18:42:48 -05:00
## Related commands
2016-08-31 12:57:32 -04:00
* [volume create ](volume_create.md )
* [volume ls ](volume_ls.md )
* [volume inspect ](volume_inspect.md )
* [volume rm ](volume_rm.md )
2020-04-19 09:43:08 -04:00
* [Understand Data Volumes ](https://docs.docker.com/storage/volumes/ )
2016-08-31 12:57:32 -04:00
* [system df ](system_df.md )
* [container prune ](container_prune.md )
2016-10-10 11:26:05 -04:00
* [image prune ](image_prune.md )
2016-10-18 00:36:52 -04:00
* [network prune ](network_prune.md )
2016-08-31 12:57:32 -04:00
* [system prune ](system_prune.md )