Skip to content

Commit fc4e79e

Browse files
committed
install/uninstall: unhide
The install/uninstall commands were introduced in PR 34 (Apr 2019) as hidden commands. These commands should no longer be hidden, as they have been explicitly documented since docker/docs PR 21641 (Dec 2024). https://docs.docker.com/build/builders/#difference-between-docker-build-and-docker-buildx-build Signed-off-by: Akihiro Suda <[email protected]>
1 parent 67218be commit fc4e79e

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

commands/install.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ func installCmd(dockerCli command.Cli) *cobra.Command {
4747
RunE: func(cmd *cobra.Command, args []string) error {
4848
return runInstall(dockerCli, options)
4949
},
50-
Hidden: true,
5150
ValidArgsFunction: completion.Disable,
5251
DisableFlagsInUseLine: true,
5352
}

commands/uninstall.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ func uninstallCmd(dockerCli command.Cli) *cobra.Command {
5353
RunE: func(cmd *cobra.Command, args []string) error {
5454
return runUninstall(dockerCli, options)
5555
},
56-
Hidden: true,
5756
ValidArgsFunction: completion.Disable,
5857
DisableFlagsInUseLine: true,
5958
}

0 commit comments

Comments
 (0)