replace active by enabled for consistency in plugins
Signed-off-by: Victor Vieux <vieux@docker.com> Upstream-commit: cf4e268115911e9e4a4da94dc00b2dc370f86a47 Component: engine
This commit is contained in:
@ -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
|
||||
```
|
||||
|
||||
|
||||
Reference in New Issue
Block a user