github.com/brahmaroutu/docker@v1.2.1-0.20160809185609-eb28dde01f16/docs/reference/commandline/plugin_enable.md (about)

     1  <!--[metadata]>
     2  +++
     3  title = "plugin enable"
     4  description = "the plugin enable command description and usage"
     5  keywords = ["plugin, enable"]
     6  advisory = "experimental"
     7  [menu.main]
     8  parent = "smn_cli"
     9  +++
    10  <![end-metadata]-->
    11  
    12  # plugin enable (experimental)
    13  
    14  ```markdown
    15  Usage:  docker plugin enable PLUGIN
    16  
    17  Enable a plugin
    18  
    19  Options:
    20        --help   Print usage
    21  ```
    22  
    23  Enables a plugin. The plugin must be installed before it can be enabled,
    24  see [`docker plugin install`](plugin_install.md).
    25  
    26  
    27  The following example shows that the `no-remove` plugin is installed,
    28  but disabled ("inactive"):
    29  
    30  ```bash
    31  $ docker plugin ls
    32  
    33  NAME                    VERSION             ACTIVE
    34  tiborvass/no-remove     latest              false
    35  ```
    36  
    37  To enable the plugin, use the following command:
    38  
    39  ```bash
    40  $ docker plugin enable tiborvass/no-remove
    41  
    42  tiborvass/no-remove
    43  ```
    44  
    45  After the plugin is enabled, it appears as "active" in the list of plugins:
    46  
    47  ```bash
    48  $ docker plugin ls
    49  
    50  NAME                    VERSION             ACTIVE
    51  tiborvass/no-remove     latest              true
    52  ```
    53  
    54  ## Related information
    55  
    56  * [plugin ls](plugin_ls.md)
    57  * [plugin disable](plugin_disable.md)
    58  * [plugin inspect](plugin_inspect.md)
    59  * [plugin install](plugin_install.md)
    60  * [plugin rm](plugin_rm.md)