2015-06-12 09:25:32 -04:00
|
|
|
% DOCKER(1) Docker User Manuals
|
|
|
|
% Docker Community
|
|
|
|
% JULY 2015
|
|
|
|
# NAME
|
|
|
|
docker-volume-rm - Remove a volume
|
|
|
|
|
|
|
|
# SYNOPSIS
|
|
|
|
**docker volume rm**
|
2015-09-09 11:45:28 -04:00
|
|
|
[**--help**]
|
|
|
|
VOLUME [VOLUME...]
|
2015-06-12 09:25:32 -04:00
|
|
|
|
|
|
|
# DESCRIPTION
|
|
|
|
|
2015-09-08 12:02:16 -04:00
|
|
|
Removes one or more volumes. You cannot remove a volume that is in use by a container.
|
2015-06-12 09:25:32 -04:00
|
|
|
|
2015-09-09 11:45:28 -04:00
|
|
|
```
|
|
|
|
$ docker volume rm hello
|
|
|
|
hello
|
|
|
|
```
|
2015-06-12 09:25:32 -04:00
|
|
|
|
|
|
|
# OPTIONS
|
2015-09-09 11:45:28 -04:00
|
|
|
**--help**
|
|
|
|
Print usage statement
|
2015-06-12 09:25:32 -04:00
|
|
|
|
|
|
|
# HISTORY
|
|
|
|
July 2015, created by Brian Goff <cpuguy83@gmail.com>
|