Skip to content

Commit 56db4b3

Browse files
authored
Merge pull request #3472 from AkihiroSuda/deprecate-install
deprecate `docker buildx install` and `docker buildx uninstall`
2 parents f8fb2ab + 9e87642 commit 56db4b3

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

commands/install.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ func installCmd(dockerCli command.Cli) *cobra.Command {
4747
RunE: func(cmd *cobra.Command, args []string) error {
4848
return runInstall(dockerCli, options)
4949
},
50+
Deprecated: "use 'docker buildx' directly, without relying on the 'docker builder' alias",
5051
Hidden: true,
5152
ValidArgsFunction: completion.Disable,
5253
DisableFlagsInUseLine: true,

commands/uninstall.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ func uninstallCmd(dockerCli command.Cli) *cobra.Command {
5353
RunE: func(cmd *cobra.Command, args []string) error {
5454
return runUninstall(dockerCli, options)
5555
},
56+
Deprecated: "use 'docker buildx' directly, without relying on the 'docker builder' alias",
5657
Hidden: true,
5758
ValidArgsFunction: completion.Disable,
5859
DisableFlagsInUseLine: true,

0 commit comments

Comments
 (0)