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.
46 lines
1.1 KiB
Go
46 lines
1.1 KiB
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/docker/cli/cli-plugins/manager"
|
|
"github.com/docker/cli/cli-plugins/plugin"
|
|
"github.com/docker/cli/cli/command"
|
|
cliflags "github.com/docker/cli/cli/flags"
|
|
"github.com/spf13/cobra"
|
|
"github.com/tonistiigi/buildx/commands"
|
|
"github.com/tonistiigi/buildx/version"
|
|
|
|
_ "github.com/tonistiigi/buildx/driver/docker"
|
|
_ "github.com/tonistiigi/buildx/driver/docker-container"
|
|
)
|
|
|
|
func main() {
|
|
if os.Getenv("DOCKER_CLI_PLUGIN_ORIGINAL_CLI_COMMAND") == "" {
|
|
if len(os.Args) < 2 || os.Args[1] != manager.MetadataSubcommandName {
|
|
dockerCli, err := command.NewDockerCli()
|
|
if err != nil {
|
|
fmt.Fprintln(os.Stderr, err)
|
|
os.Exit(1)
|
|
}
|
|
opts := cliflags.NewClientOptions()
|
|
dockerCli.Initialize(opts)
|
|
rootCmd := commands.NewRootCmd(os.Args[0], false, dockerCli)
|
|
if err := rootCmd.Execute(); err != nil {
|
|
os.Exit(1)
|
|
}
|
|
os.Exit(0)
|
|
}
|
|
}
|
|
|
|
plugin.Run(func(dockerCli command.Cli) *cobra.Command {
|
|
return commands.NewRootCmd("buildx", true, dockerCli)
|
|
},
|
|
manager.Metadata{
|
|
SchemaVersion: "0.1.0",
|
|
Vendor: "Docker Inc.",
|
|
Version: version.Version,
|
|
})
|
|
}
|