github.com/flavio/docker@v0.1.3-0.20170117145210-f63d1a6eec47/docs/reference/commandline/plugin_disable.md (about) 1 --- 2 title: "plugin disable" 3 description: "the plugin disable command description and usage" 4 keywords: "plugin, disable" 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 disable 17 18 ```markdown 19 Usage: docker plugin disable PLUGIN 20 21 Disable a plugin 22 23 Options: 24 -f, --force Force the disable of an active plugin 25 --help Print usage 26 ``` 27 28 Disables a plugin. The plugin must be installed before it can be disabled, 29 see [`docker plugin install`](plugin_install.md). Without the `-f` option, 30 a plugin that has references (eg, volumes, networks) cannot be disabled. 31 32 33 The following example shows that the `sample-volume-plugin` plugin is installed 34 and enabled: 35 36 ```bash 37 $ docker plugin ls 38 39 ID NAME TAG DESCRIPTION ENABLED 40 69553ca1d123 tiborvass/sample-volume-plugin latest A test plugin for Docker true 41 ``` 42 43 To disable the plugin, use the following command: 44 45 ```bash 46 $ docker plugin disable tiborvass/sample-volume-plugin 47 48 tiborvass/sample-volume-plugin 49 50 $ docker plugin ls 51 52 ID NAME TAG DESCRIPTION ENABLED 53 69553ca1d123 tiborvass/sample-volume-plugin latest A test plugin for Docker false 54 ``` 55 56 ## Related information 57 58 * [plugin create](plugin_create.md) 59 * [plugin enable](plugin_enable.md) 60 * [plugin inspect](plugin_inspect.md) 61 * [plugin install](plugin_install.md) 62 * [plugin ls](plugin_ls.md) 63 * [plugin push](plugin_push.md) 64 * [plugin rm](plugin_rm.md) 65 * [plugin set](plugin_set.md)