github.com/brahmaroutu/docker@v1.2.1-0.20160809185609-eb28dde01f16/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 active:
    29  
    30  ```bash
    31  $ docker plugin ls
    32  
    33  NAME                        TAG           ACTIVE
    34  tiborvass/no-remove         latest        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  
    45  After the plugin is disabled, it appears as "inactive" in the list of plugins:
    46  
    47  ```bash
    48  $ docker plugin ls
    49  
    50  NAME                    VERSION           ACTIVE
    51  tiborvass/no-remove     latest            false
    52  ```
    53  
    54  ## Related information
    55  
    56  * [plugin ls](plugin_ls.md)
    57  * [plugin enable](plugin_enable.md)
    58  * [plugin inspect](plugin_inspect.md)
    59  * [plugin install](plugin_install.md)
    60  * [plugin rm](plugin_rm.md)