2016-10-14 18:30:36 -04:00
|
|
|
---
|
|
|
|
title: "plugin enable"
|
|
|
|
description: "the plugin enable command description and usage"
|
2016-11-03 18:48:30 -04:00
|
|
|
keywords: "plugin, enable"
|
2016-10-14 18:30:36 -04:00
|
|
|
---
|
2016-06-09 17:57:15 -04:00
|
|
|
|
2016-10-19 13:25:45 -04:00
|
|
|
<!-- This file is maintained within the docker/docker Github
|
|
|
|
repository at https://github.com/docker/docker/. Make all
|
|
|
|
pull requests against that repo. If you see this file in
|
|
|
|
another repository, consider it read-only there, as it will
|
|
|
|
periodically be overwritten by the definitive file. Pull
|
|
|
|
requests which include edits to this file in other repositories
|
|
|
|
will be rejected.
|
|
|
|
-->
|
|
|
|
|
2016-11-09 20:49:09 -05:00
|
|
|
# plugin enable
|
2016-06-09 17:57:15 -04:00
|
|
|
|
2016-07-07 14:43:18 -04:00
|
|
|
```markdown
|
2016-11-24 15:07:06 -05:00
|
|
|
Usage: docker plugin enable [OPTIONS] PLUGIN
|
2016-06-09 17:57:15 -04:00
|
|
|
|
2016-07-07 14:43:18 -04:00
|
|
|
Enable a plugin
|
2016-06-09 17:57:15 -04:00
|
|
|
|
2016-07-07 14:43:18 -04:00
|
|
|
Options:
|
2016-11-23 09:42:40 -05:00
|
|
|
--help Print usage
|
|
|
|
--timeout int HTTP client timeout (in seconds)
|
2016-07-07 14:43:18 -04:00
|
|
|
```
|
2016-06-09 17:57:15 -04:00
|
|
|
|
|
|
|
Enables a plugin. The plugin must be installed before it can be enabled,
|
|
|
|
see [`docker plugin install`](plugin_install.md).
|
|
|
|
|
|
|
|
|
2016-07-20 17:37:55 -04:00
|
|
|
The following example shows that the `no-remove` plugin is installed,
|
2016-08-04 19:19:46 -04:00
|
|
|
but disabled:
|
2016-06-09 17:57:15 -04:00
|
|
|
|
|
|
|
```bash
|
|
|
|
$ docker plugin ls
|
2016-07-20 17:37:55 -04:00
|
|
|
|
2016-08-04 19:19:46 -04:00
|
|
|
NAME TAG DESCRIPTION ENABLED
|
2016-08-09 18:44:54 -04:00
|
|
|
tiborvass/no-remove latest A test plugin for Docker false
|
2016-06-09 17:57:15 -04:00
|
|
|
```
|
2016-07-20 17:37:55 -04:00
|
|
|
|
2016-06-09 17:57:15 -04:00
|
|
|
To enable the plugin, use the following command:
|
|
|
|
|
|
|
|
```bash
|
2016-07-20 17:37:55 -04:00
|
|
|
$ docker plugin enable tiborvass/no-remove
|
|
|
|
|
|
|
|
tiborvass/no-remove
|
2016-06-09 17:57:15 -04:00
|
|
|
|
|
|
|
$ docker plugin ls
|
2016-07-20 17:37:55 -04:00
|
|
|
|
2016-08-04 19:19:46 -04:00
|
|
|
NAME TAG DESCRIPTION ENABLED
|
2016-08-09 18:44:54 -04:00
|
|
|
tiborvass/no-remove latest A test plugin for Docker true
|
2016-06-09 17:57:15 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
## Related information
|
|
|
|
|
2016-10-04 15:01:19 -04:00
|
|
|
* [plugin create](plugin_create.md)
|
2016-06-09 17:57:15 -04:00
|
|
|
* [plugin disable](plugin_disable.md)
|
|
|
|
* [plugin inspect](plugin_inspect.md)
|
|
|
|
* [plugin install](plugin_install.md)
|
2016-11-14 11:38:06 -05:00
|
|
|
* [plugin ls](plugin_ls.md)
|
|
|
|
* [plugin push](plugin_push.md)
|
2016-06-09 17:57:15 -04:00
|
|
|
* [plugin rm](plugin_rm.md)
|
2016-10-31 20:07:05 -04:00
|
|
|
* [plugin set](plugin_set.md)
|