mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
14e8898648
- missing help option in `docs/reference/commandline/*.md` (some files have it, the other I fixed didn't) - missing `[OPTIONS]` in Usage description - missing options - formatting - start/stop idempotence Signed-off-by: Antonio Murdaca <amurdaca@redhat.com>
995 B
995 B
volume ls
Usage: docker volume ls [OPTIONS]
List volumes
-f, --filter=[] Provide filter values (i.e. 'dangling=true')
--help=false Print usage
-q, --quiet=false Only display volume names
Lists all the volumes Docker knows about. You can filter using the -f
or --filter
flag. The filtering format is a key=value
pair. To specify more than one filter, pass multiple flags (for example, --filter "foo=bar" --filter "bif=baz"
)
There is a single supported filter dangling=value
which takes a boolean of true
or false
.
Example output:
$ docker volume create --name rose
rose
$docker volume create --name tyler
tyler
$ docker volume ls
DRIVER VOLUME NAME
local rose
local tyler