mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
c70c0e4d0b
It was forgetton to add change in man for new-added volume filters. This change adds that. Signed-off-by: Kai Qiang Wu(Kennan) <wkqwu@cn.ibm.com>
33 lines
955 B
Markdown
33 lines
955 B
Markdown
% DOCKER(1) Docker User Manuals
|
|
% Docker Community
|
|
% JULY 2015
|
|
# NAME
|
|
docker-volume-ls - List all volumes
|
|
|
|
# SYNOPSIS
|
|
**docker volume ls**
|
|
[**-f**|**--filter**[=*FILTER*]]
|
|
[**--help**]
|
|
[**-q**|**--quiet**[=*true*|*false*]]
|
|
|
|
# DESCRIPTION
|
|
|
|
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`.
|
|
|
|
# OPTIONS
|
|
**-f**, **--filter**=""
|
|
Filter output based on these conditions:
|
|
- dangling=<boolean> a volume if referenced or not
|
|
- driver=<string> a volume's driver name
|
|
- name=<string> a volume's name
|
|
|
|
**--help**
|
|
Print usage statement
|
|
|
|
**-q**, **--quiet**=*true*|*false*
|
|
Only display volume names
|
|
|
|
# HISTORY
|
|
July 2015, created by Brian Goff <cpuguy83@gmail.com>
|