github.com/flavio/docker@v0.1.3-0.20170117145210-f63d1a6eec47/docs/reference/commandline/plugin_enable.md (about) 1 --- 2 title: "plugin enable" 3 description: "the plugin enable command description and usage" 4 keywords: "plugin, enable" 5 --- 6 7 <!-- This file is maintained within the docker/docker Github 8 repository at https://github.com/docker/docker/. Make all 9 pull requests against that repo. If you see this file in 10 another repository, consider it read-only there, as it will 11 periodically be overwritten by the definitive file. Pull 12 requests which include edits to this file in other repositories 13 will be rejected. 14 --> 15 16 # plugin enable 17 18 ```markdown 19 Usage: docker plugin enable [OPTIONS] PLUGIN 20 21 Enable a plugin 22 23 Options: 24 --help Print usage 25 --timeout int HTTP client timeout (in seconds) 26 ``` 27 28 Enables a plugin. The plugin must be installed before it can be enabled, 29 see [`docker plugin install`](plugin_install.md). 30 31 32 The following example shows that the `sample-volume-plugin` plugin is installed, 33 but disabled: 34 35 ```bash 36 $ docker plugin ls 37 38 ID NAME TAG DESCRIPTION ENABLED 39 69553ca1d123 tiborvass/sample-volume-plugin latest A test plugin for Docker false 40 ``` 41 42 To enable the plugin, use the following command: 43 44 ```bash 45 $ docker plugin enable tiborvass/sample-volume-plugin 46 47 tiborvass/sample-volume-plugin 48 49 $ docker plugin ls 50 51 ID NAME TAG DESCRIPTION ENABLED 52 69553ca1d123 tiborvass/sample-volume-plugin latest A test plugin for Docker true 53 ``` 54 55 ## Related information 56 57 * [plugin create](plugin_create.md) 58 * [plugin disable](plugin_disable.md) 59 * [plugin inspect](plugin_inspect.md) 60 * [plugin install](plugin_install.md) 61 * [plugin ls](plugin_ls.md) 62 * [plugin push](plugin_push.md) 63 * [plugin rm](plugin_rm.md) 64 * [plugin set](plugin_set.md)