1
0
mirror of https://github.com/docker/cli.git synced 2025-08-23 04:32:26 +03:00
Files
cli/docs/reference/commandline/plugin_disable.md
Harald Albers 5027bc6596 Add [OPTIONS] to usage of plugin disable|push
Signed-off-by: Harald Albers <github@albersweb.de>
2017-06-02 00:10:51 +00:00

1.9 KiB

title, description, keywords
title description keywords
plugin disable the plugin disable command description and usage plugin, disable

plugin disable

Usage:  docker plugin disable [OPTIONS] PLUGIN

Disable a plugin

Options:
  -f, --force   Force the disable of an active plugin
      --help    Print usage

Disables a plugin. The plugin must be installed before it can be disabled, see docker plugin install. Without the -f option, a plugin that has references (eg, volumes, networks) cannot be disabled.

The following example shows that the sample-volume-plugin plugin is installed and enabled:

$ docker plugin ls

ID                  NAME                             TAG                 DESCRIPTION                ENABLED
69553ca1d123        tiborvass/sample-volume-plugin   latest              A test plugin for Docker   true

To disable the plugin, use the following command:

$ docker plugin disable tiborvass/sample-volume-plugin

tiborvass/sample-volume-plugin

$ docker plugin ls

ID                  NAME                             TAG                 DESCRIPTION                ENABLED
69553ca1d123        tiborvass/sample-volume-plugin   latest              A test plugin for Docker   false