mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
![Misty Stanley-Jones](/assets/img/avatar_default.png)
Some frontmatter such as the weights, menu stuff, etc is no longer used 'draft=true' becomes 'published: false' Signed-off-by: Misty Stanley-Jones <misty@docker.com>
41 lines
877 B
Markdown
41 lines
877 B
Markdown
---
|
|
title: "plugin ls"
|
|
description: "The plugin ls command description and usage"
|
|
keywords: ["plugin, list"]
|
|
advisory: "experimental"
|
|
---
|
|
|
|
# plugin ls (experimental)
|
|
|
|
```markdown
|
|
Usage: docker plugin ls [OPTIONS]
|
|
|
|
List plugins
|
|
|
|
Aliases:
|
|
ls, list
|
|
|
|
Options:
|
|
--help Print usage
|
|
--no-trunc Don't truncate output
|
|
```
|
|
|
|
Lists all the plugins that are currently installed. You can install plugins
|
|
using the [`docker plugin install`](plugin_install.md) command.
|
|
|
|
Example output:
|
|
|
|
```bash
|
|
$ docker plugin ls
|
|
|
|
NAME TAG DESCRIPTION ENABLED
|
|
tiborvass/no-remove latest A test plugin for Docker true
|
|
```
|
|
|
|
## Related information
|
|
|
|
* [plugin enable](plugin_enable.md)
|
|
* [plugin disable](plugin_disable.md)
|
|
* [plugin inspect](plugin_inspect.md)
|
|
* [plugin install](plugin_install.md)
|
|
* [plugin rm](plugin_rm.md)
|