mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
29 lines
634 B
Go
29 lines
634 B
Go
|
// +build experimental
|
||
|
|
||
|
package plugin
|
||
|
|
||
|
import (
|
||
|
"golang.org/x/net/context"
|
||
|
|
||
|
"github.com/docker/docker/api/client"
|
||
|
"github.com/docker/docker/cli"
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
func newSetCommand(dockerCli *client.DockerCli) *cobra.Command {
|
||
|
cmd := &cobra.Command{
|
||
|
Use: "set",
|
||
|
Short: "Change settings for a plugin",
|
||
|
Args: cli.RequiresMinArgs(2),
|
||
|
RunE: func(cmd *cobra.Command, args []string) error {
|
||
|
return runSet(dockerCli, args[0], args[1:])
|
||
|
},
|
||
|
}
|
||
|
|
||
|
return cmd
|
||
|
}
|
||
|
|
||
|
func runSet(dockerCli *client.DockerCli, name string, args []string) error {
|
||
|
return dockerCli.Client().PluginSet(context.Background(), name, args)
|
||
|
}
|