1
0
mirror of https://github.com/docker/cli.git synced 2025-09-02 10:21:16 +03:00
Files
cli/docs/reference/commandline/plugin_set.md
Victor Vieux d1ed73508a support settings in docker plugins install
Signed-off-by: Victor Vieux <vieux@docker.com>
2017-06-02 00:10:34 +00:00

1.3 KiB

title, description, keywords, advisory
title description keywords advisory
plugin set the plugin set command description and usage plugin, set experimental

plugin set (experimental)

Usage:  docker plugin set PLUGIN KEY=VALUE [KEY=VALUE...]

Change settings for a plugin

Options:
      --help                    Print usage

Change settings for a plugin. The plugin must be disabled.

The following example installs change the env variable DEBUG of the no-remove plugin.

$ docker plugin inspect -f {{.Config.Env}} tiborvass/no-remove
[DEBUG=0]

$ docker plugin set DEBUG=1 tiborvass/no-remove

$ docker plugin inspect -f {{.Config.Env}} tiborvass/no-remove
[DEBUG=1]