summaryrefslogtreecommitdiff
path: root/cmd/podman/images/buildx.go
diff options
context:
space:
mode:
authoropenshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com>2021-08-09 20:09:16 +0000
committerGitHub <noreply@github.com>2021-08-09 20:09:16 +0000
commit6513adda185986c1994d2a2d354b874aee7543e6 (patch)
tree1a8e4242386622886caa4786af15417f0ced4821 /cmd/podman/images/buildx.go
parent431707c72044154b956944d00b1ba40b303decb2 (diff)
parent170fb257295027aeb6410b86e06c38086299d2e3 (diff)
downloadpodman-6513adda185986c1994d2a2d354b874aee7543e6.tar.gz
podman-6513adda185986c1994d2a2d354b874aee7543e6.tar.bz2
podman-6513adda185986c1994d2a2d354b874aee7543e6.zip
Merge pull request #11134 from rhatdan/buildx
Alias build to buildx, so it won't fail
Diffstat (limited to 'cmd/podman/images/buildx.go')
-rw-r--r--cmd/podman/images/buildx.go29
1 files changed, 29 insertions, 0 deletions
diff --git a/cmd/podman/images/buildx.go b/cmd/podman/images/buildx.go
new file mode 100644
index 000000000..5c8e5aaa0
--- /dev/null
+++ b/cmd/podman/images/buildx.go
@@ -0,0 +1,29 @@
+package images
+
+import (
+ "github.com/containers/podman/v3/cmd/podman/registry"
+ "github.com/containers/podman/v3/cmd/podman/validate"
+ "github.com/spf13/cobra"
+)
+
+var (
+ // Command: podman _buildx_
+ // This is a hidden command, which was added to make converting
+ // from Docker to Podman easier.
+ // For now podman buildx build just calls into podman build
+ // If we are adding new buildx features, we will add them by default
+ // to podman build.
+ buildxCmd = &cobra.Command{
+ Use: "buildx",
+ Short: "Build images",
+ Long: "Build images",
+ RunE: validate.SubCommandExists,
+ Hidden: true,
+ }
+)
+
+func init() {
+ registry.Commands = append(registry.Commands, registry.CliCommand{
+ Command: buildxCmd,
+ })
+}