This fix adds `--filter enabled=true` to `docker plugin ls`, as was specified in 28624. The related API and docs has been updated. An integration test has been added. This fix fixes 28624. Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
2.9 KiB
title, description, keywords
| title | description | keywords |
|---|---|---|
| plugin ls | The plugin ls command description and usage | plugin, list |
plugin ls
Usage: docker plugin ls [OPTIONS]
List plugins
Aliases:
ls, list
Options:
-f, --filter filter Provide filter values (e.g. 'enabled=true')
--format string Pretty-print plugins using a Go template
--help Print usage
--no-trunc Don't truncate output
-q, --quiet Only display plugin IDs
Lists all the plugins that are currently installed. You can install plugins
using the docker plugin install command.
You can also filter using the -f or --filter flag.
Refer to the filtering section for more information about available filter options.
Example output:
$ docker plugin ls
ID NAME TAG DESCRIPTION ENABLED
69553ca1d123 tiborvass/sample-volume-plugin latest A test plugin for Docker true
Filtering
The filtering flag (-f or --filter) format is of "key=value". If there is more
than one filter, then pass multiple flags (e.g., --filter "foo=bar" --filter "bif=baz")
The currently supported filters are:
- enabled (boolean - true or false, 0 or 1)
enabled
The enabled filter matches on plugins enabled or disabled.
Formatting
The formatting options (--format) pretty-prints plugins output
using a Go template.
Valid placeholders for the Go template are listed below:
| Placeholder | Description |
|---|---|
.ID |
Plugin ID |
.Name |
Plugin name |
.Description |
Plugin description |
.Enabled |
Whether plugin is enabled or not |
When using the --format option, the plugin ls command will either
output the data exactly as the template declares or, when using the
table directive, includes column headers as well.
The following example uses a template without headers and outputs the
ID and Name entries separated by a colon for all plugins:
$ docker plugin ls --format "{{.ID}}: {{.Name}}"
4be01827a72e: tiborvass/no-remove