2016-10-14 18:30:36 -04:00
|
|
|
---
|
|
|
|
title: "plugin ls"
|
|
|
|
description: "The plugin ls command description and usage"
|
2016-11-03 18:48:30 -04:00
|
|
|
keywords: "plugin, list"
|
2016-10-14 18:30:36 -04:00
|
|
|
---
|
2016-06-09 17:57:15 -04:00
|
|
|
|
2016-11-09 20:49:09 -05:00
|
|
|
# plugin ls
|
2016-06-09 17:57:15 -04:00
|
|
|
|
2016-07-07 14:43:18 -04:00
|
|
|
```markdown
|
2016-08-31 02:18:41 -04:00
|
|
|
Usage: docker plugin ls [OPTIONS]
|
2016-06-09 17:57:15 -04:00
|
|
|
|
2016-07-07 14:43:18 -04:00
|
|
|
List plugins
|
2016-06-09 17:57:15 -04:00
|
|
|
|
2016-07-07 14:43:18 -04:00
|
|
|
Aliases:
|
|
|
|
ls, list
|
2016-06-09 17:57:15 -04:00
|
|
|
|
2016-07-07 14:43:18 -04:00
|
|
|
Options:
|
2016-11-23 07:58:15 -05:00
|
|
|
-f, --filter filter Provide filter values (e.g. 'enabled=true')
|
2016-11-22 19:23:21 -05:00
|
|
|
--format string Pretty-print plugins using a Go template
|
|
|
|
--help Print usage
|
|
|
|
--no-trunc Don't truncate output
|
|
|
|
-q, --quiet Only display plugin IDs
|
2016-07-07 14:43:18 -04:00
|
|
|
```
|
2016-06-09 17:57:15 -04:00
|
|
|
|
2017-02-07 18:42:48 -05:00
|
|
|
## Description
|
|
|
|
|
2016-06-09 17:57:15 -04:00
|
|
|
Lists all the plugins that are currently installed. You can install plugins
|
|
|
|
using the [`docker plugin install`](plugin_install.md) command.
|
2016-11-23 07:58:15 -05:00
|
|
|
You can also filter using the `-f` or `--filter` flag.
|
|
|
|
Refer to the [filtering](#filtering) section for more information about available filter options.
|
2016-06-09 17:57:15 -04:00
|
|
|
|
2017-02-07 18:42:48 -05:00
|
|
|
## Examples
|
2016-06-09 17:57:15 -04:00
|
|
|
|
|
|
|
```bash
|
|
|
|
$ docker plugin ls
|
2016-07-20 17:37:55 -04:00
|
|
|
|
2020-06-18 10:37:36 -04:00
|
|
|
ID NAME DESCRIPTION ENABLED
|
|
|
|
69553ca1d123 tiborvass/sample-volume-plugin:latest A test plugin for Docker true
|
2016-06-09 17:57:15 -04:00
|
|
|
```
|
|
|
|
|
2017-02-07 18:42:48 -05:00
|
|
|
### Filtering
|
2016-11-23 07:58:15 -05:00
|
|
|
|
|
|
|
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)
|
2017-04-13 21:56:50 -04:00
|
|
|
* capability (string - currently `volumedriver`, `networkdriver`, `ipamdriver`, `logdriver`, `metricscollector`, or `authz`)
|
2016-11-23 07:58:15 -05:00
|
|
|
|
2017-02-07 18:42:48 -05:00
|
|
|
#### enabled
|
2016-11-23 07:58:15 -05:00
|
|
|
|
|
|
|
The `enabled` filter matches on plugins enabled or disabled.
|
|
|
|
|
2017-02-07 18:42:48 -05:00
|
|
|
#### capability
|
2016-11-23 08:27:09 -05:00
|
|
|
|
|
|
|
The `capability` filter matches on plugin capabilities. One plugin
|
|
|
|
might have multiple capabilities. Currently `volumedriver`, `networkdriver`,
|
2017-04-13 21:56:50 -04:00
|
|
|
`ipamdriver`, `logdriver`, `metricscollector`, and `authz` are supported capabilities.
|
2016-11-23 08:27:09 -05:00
|
|
|
|
|
|
|
```bash
|
2017-08-07 05:04:05 -04:00
|
|
|
$ docker plugin install --disable vieux/sshfs
|
2017-02-07 18:42:48 -05:00
|
|
|
|
2017-08-07 05:04:05 -04:00
|
|
|
Installed plugin vieux/sshfs
|
2016-11-23 08:27:09 -05:00
|
|
|
|
|
|
|
$ docker plugin ls --filter enabled=true
|
2017-02-07 18:42:48 -05:00
|
|
|
|
2020-06-18 10:37:36 -04:00
|
|
|
ID NAME DESCRIPTION ENABLED
|
2016-11-23 08:27:09 -05:00
|
|
|
```
|
|
|
|
|
2017-02-07 18:42:48 -05:00
|
|
|
### Formatting
|
2016-11-22 19:23:21 -05:00
|
|
|
|
|
|
|
The formatting options (`--format`) pretty-prints plugins output
|
|
|
|
using a Go template.
|
|
|
|
|
|
|
|
Valid placeholders for the Go template are listed below:
|
|
|
|
|
2020-04-19 09:43:08 -04:00
|
|
|
Placeholder | Description
|
|
|
|
-------------------|------------------------------------------------------------
|
2017-01-28 19:54:32 -05:00
|
|
|
`.ID` | Plugin ID
|
2020-06-18 10:37:36 -04:00
|
|
|
`.Name` | Plugin name and tag
|
2017-01-28 19:54:32 -05:00
|
|
|
`.Description` | Plugin description
|
|
|
|
`.Enabled` | Whether plugin is enabled or not
|
|
|
|
`.PluginReference` | The reference used to push/pull from a registry
|
2016-11-22 19:23:21 -05:00
|
|
|
|
|
|
|
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
|
2020-04-19 11:23:09 -04:00
|
|
|
`ID` and `Name` entries separated by a colon (`:`) for all plugins:
|
2016-11-22 19:23:21 -05:00
|
|
|
|
|
|
|
```bash
|
|
|
|
$ docker plugin ls --format "{{.ID}}: {{.Name}}"
|
2017-02-07 18:42:48 -05:00
|
|
|
|
2017-08-07 05:04:05 -04:00
|
|
|
4be01827a72e: vieux/sshfs:latest
|
2016-11-22 19:23:21 -05:00
|
|
|
```
|
|
|
|
|
2017-02-07 18:42:48 -05:00
|
|
|
## Related commands
|
2016-06-09 17:57:15 -04:00
|
|
|
|
2016-10-04 15:01:19 -04:00
|
|
|
* [plugin create](plugin_create.md)
|
2016-06-09 17:57:15 -04:00
|
|
|
* [plugin disable](plugin_disable.md)
|
2016-11-14 11:38:06 -05:00
|
|
|
* [plugin enable](plugin_enable.md)
|
2016-06-09 17:57:15 -04:00
|
|
|
* [plugin inspect](plugin_inspect.md)
|
|
|
|
* [plugin install](plugin_install.md)
|
2016-11-14 11:38:06 -05:00
|
|
|
* [plugin push](plugin_push.md)
|
2016-06-09 17:57:15 -04:00
|
|
|
* [plugin rm](plugin_rm.md)
|
2016-10-31 20:07:05 -04:00
|
|
|
* [plugin set](plugin_set.md)
|
2017-01-28 19:54:32 -05:00
|
|
|
* [plugin upgrade](plugin_upgrade.md)
|