deprecate docker buildx install and docker buildx uninstall

Deprecate these commands in favor of using `docker buildx` directly,
without relying on the `docker builder` alias.

The commands have been hidden since the beginning.

Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
This commit is contained in:
Akihiro Suda
2025-10-17 01:58:32 +09:00
parent 734034375e
commit 9e876421ee
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -47,6 +47,7 @@ func installCmd(dockerCli command.Cli) *cobra.Command {
RunE: func(cmd *cobra.Command, args []string) error {
return runInstall(dockerCli, options)
},
Deprecated: "use 'docker buildx' directly, without relying on the 'docker builder' alias",
Hidden: true,
ValidArgsFunction: completion.Disable,
DisableFlagsInUseLine: true,
+1
View File
@@ -53,6 +53,7 @@ func uninstallCmd(dockerCli command.Cli) *cobra.Command {
RunE: func(cmd *cobra.Command, args []string) error {
return runUninstall(dockerCli, options)
},
Deprecated: "use 'docker buildx' directly, without relying on the 'docker builder' alias",
Hidden: true,
ValidArgsFunction: completion.Disable,
DisableFlagsInUseLine: true,