Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion commands/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ func installCmd(dockerCli command.Cli) *cobra.Command {
RunE: func(cmd *cobra.Command, args []string) error {
return runInstall(dockerCli, options)
},
Hidden: true,
ValidArgsFunction: completion.Disable,
DisableFlagsInUseLine: true,
}
Expand Down
1 change: 0 additions & 1 deletion commands/uninstall.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ func uninstallCmd(dockerCli command.Cli) *cobra.Command {
RunE: func(cmd *cobra.Command, args []string) error {
return runUninstall(dockerCli, options)
},
Hidden: true,
ValidArgsFunction: completion.Disable,
DisableFlagsInUseLine: true,
}
Expand Down
2 changes: 2 additions & 0 deletions docs/reference/buildx.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,12 @@ Extended build capabilities with BuildKit
| [`history`](buildx_history.md) | Commands to work on build records |
| [`imagetools`](buildx_imagetools.md) | Commands to work on images in registry |
| [`inspect`](buildx_inspect.md) | Inspect current builder instance |
| [`install`](buildx_install.md) | Install buildx as a 'docker builder' alias |
| [`ls`](buildx_ls.md) | List builder instances |
| [`prune`](buildx_prune.md) | Remove build cache |
| [`rm`](buildx_rm.md) | Remove one or more builder instances |
| [`stop`](buildx_stop.md) | Stop builder instance |
| [`uninstall`](buildx_uninstall.md) | Uninstall the 'docker builder' alias |
| [`use`](buildx_use.md) | Set the current builder instance |
| [`version`](buildx_version.md) | Show buildx version information |

Expand Down
14 changes: 14 additions & 0 deletions docs/reference/buildx_install.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# docker buildx install

<!---MARKER_GEN_START-->
Install buildx as a 'docker builder' alias

### Options

| Name | Type | Default | Description |
|:----------------|:-------|:--------|:---------------------|
| `-D`, `--debug` | `bool` | | Enable debug logging |


<!---MARKER_GEN_END-->

14 changes: 14 additions & 0 deletions docs/reference/buildx_uninstall.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# docker buildx uninstall

<!---MARKER_GEN_START-->
Uninstall the 'docker builder' alias

### Options

| Name | Type | Default | Description |
|:----------------|:-------|:--------|:---------------------|
| `-D`, `--debug` | `bool` | | Enable debug logging |


<!---MARKER_GEN_END-->