1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

replace active by enabled for consistency in plugins

Signed-off-by: Victor Vieux <vieux@docker.com>
This commit is contained in:
Victor Vieux 2016-08-04 16:19:46 -07:00
parent 4844d13bd7
commit cf4e268115
12 changed files with 31 additions and 38 deletions

View file

@ -25,12 +25,12 @@ see [`docker plugin install`](plugin_install.md).
The following example shows that the `no-remove` plugin is installed,
but disabled ("inactive"):
but disabled:
```bash
$ docker plugin ls
NAME TAG DESCRIPTION ACTIVE
NAME TAG DESCRIPTION ENABLED
tiborvass/no-remove latest A test plugin for Docker false
```
@ -40,14 +40,10 @@ To enable the plugin, use the following command:
$ docker plugin enable tiborvass/no-remove
tiborvass/no-remove
```
After the plugin is enabled, it appears as "active" in the list of plugins:
```bash
$ docker plugin ls
NAME TAG DESCRIPTION ACTIVE
NAME TAG DESCRIPTION ENABLED
tiborvass/no-remove latest A test plugin for Docker true
```