mirror of https://github.com/docker/cli.git
add description in docker plugin ls
Signed-off-by: Victor Vieux <vieux@docker.com>
This commit is contained in:
parent
710f8d8dea
commit
afbc834a99
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue