commands: driver management command stubs

Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
This commit is contained in:
Tonis Tiigi
2019-04-11 17:24:24 -07:00
parent 4586e0ed18
commit 950180ed82
7 changed files with 254 additions and 0 deletions

48
commands/ls.go Normal file
View File

@ -0,0 +1,48 @@
package commands
import (
"fmt"
"github.com/docker/cli/cli"
"github.com/docker/cli/cli/command"
"github.com/spf13/cobra"
)
type lsOptions struct {
}
func runLs(dockerCli command.Cli, in lsOptions) error {
fmt.Printf("current config file: %+v\n", dockerCli.ConfigFile().Filename)
fmt.Printf("current context: %+v\n", dockerCli.CurrentContext())
list, err := dockerCli.ContextStore().ListContexts()
if err != nil {
return err
}
for i, l := range list {
fmt.Printf("context%d: %+v\n", i, l)
}
return nil
}
func lsCmd(dockerCli command.Cli) *cobra.Command {
var options lsOptions
cmd := &cobra.Command{
Use: "ls",
Short: "List builder instances",
Args: cli.ExactArgs(0),
RunE: func(cmd *cobra.Command, args []string) error {
return runLs(dockerCli, options)
},
}
flags := cmd.Flags()
// flags.StringArrayVarP(&options.outputs, "output", "o", []string{}, "Output destination (format: type=local,dest=path)")
_ = flags
return cmd
}