github.com/vieux/docker@v0.6.3-0.20161004191708-e097c2a938c7/docs/reference/commandline/volume_rm.md (about) 1 <!--[metadata]> 2 +++ 3 title = "volume rm" 4 description = "the volume rm command description and usage" 5 keywords = ["volume, rm"] 6 [menu.main] 7 parent = "smn_cli" 8 +++ 9 <![end-metadata]--> 10 11 # volume rm 12 13 ```markdown 14 Usage: docker volume rm [OPTIONS] VOLUME [VOLUME...] 15 16 Remove one or more volumes 17 18 Aliases: 19 rm, remove 20 21 Options: 22 -f, --force Force the removal of one or more volumes 23 --help Print usage 24 ``` 25 26 Remove one or more volumes. You cannot remove a volume that is in use by a container. 27 28 $ docker volume rm hello 29 hello 30 31 ## Related information 32 33 * [volume create](volume_create.md) 34 * [volume inspect](volume_inspect.md) 35 * [volume ls](volume_ls.md) 36 * [Understand Data Volumes](../../tutorials/dockervolumes.md)