You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
buildx/commands/ls.go

49 lines
977 B
Go

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
}