add description in docker plugin ls

Signed-off-by: Victor Vieux <vieux@docker.com>
This commit is contained in:
Victor Vieux 2016-08-09 15:44:54 -07:00 committed by Tibor Vass
parent 710f8d8dea
commit afbc834a99
4 changed files with 14 additions and 13 deletions

View File

@ -30,8 +30,8 @@ and active:
```bash
$ docker plugin ls
NAME TAG ACTIVE
tiborvass/no-remove latest true
NAME TAG DESCRIPTION ACTIVE
tiborvass/no-remove latest A test plugin for Docker true
```
To disable the plugin, use the following command:
@ -47,8 +47,8 @@ After the plugin is disabled, it appears as "inactive" in the list of plugins:
```bash
$ docker plugin ls
NAME VERSION ACTIVE
tiborvass/no-remove latest false
NAME TAG DESCRIPTION ACTIVE
tiborvass/no-remove latest A test plugin for Docker false
```
## Related information

View File

@ -30,8 +30,8 @@ but disabled ("inactive"):
```bash
$ docker plugin ls
NAME VERSION ACTIVE
tiborvass/no-remove latest false
NAME TAG DESCRIPTION ACTIVE
tiborvass/no-remove latest A test plugin for Docker false
```
To enable the plugin, use the following command:
@ -47,8 +47,8 @@ After the plugin is enabled, it appears as "active" in the list of plugins:
```bash
$ docker plugin ls
NAME VERSION ACTIVE
tiborvass/no-remove latest true
NAME TAG DESCRIPTION ACTIVE
tiborvass/no-remove latest A test plugin for Docker true
```
## Related information

View File

@ -47,8 +47,8 @@ After the plugin is installed, it appears in the list of plugins:
```bash
$ docker plugin ls
NAME VERSION ACTIVE
tiborvass/no-remove latest true
NAME TAG DESCRIPTION ACTIVE
tiborvass/no-remove latest A test plugin for Docker true
```
## Related information

View File

@ -20,7 +20,8 @@ Aliases:
ls, list
Options:
--help Print usage
--help Print usage
--no-trunc Don't truncate output
```
Lists all the plugins that are currently installed. You can install plugins
@ -31,8 +32,8 @@ Example output:
```bash
$ docker plugin ls
NAME VERSION ACTIVE
tiborvass/no-remove latest true
NAME TAG DESCRIPTION ACTIVE
tiborvass/no-remove latest A test plugin for Docker true
```
## Related information