github.com/vieux/docker@v0.6.3-0.20161004191708-e097c2a938c7/docs/reference/commandline/plugin_disable.md (about)

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