diff --git a/docs/reference/buildx_bake.md b/docs/reference/buildx_bake.md index cc21e523..762b70ab 100644 --- a/docs/reference/buildx_bake.md +++ b/docs/reference/buildx_bake.md @@ -17,14 +17,14 @@ Build from a file |:------------------------------------|:--------------|:--------|:----------------------------------------------------------------------------------------------------| | [`--builder`](#builder) | `string` | | Override the configured builder instance | | [`-f`](#file), [`--file`](#file) | `stringArray` | | Build definition file | -| `--load` | | | Shorthand for `--set=*.output=type=docker` | +| `--load` | `bool` | | Shorthand for `--set=*.output=type=docker` | | [`--metadata-file`](#metadata-file) | `string` | | Write build result metadata to a file | -| [`--no-cache`](#no-cache) | | | Do not use cache when building the image | -| [`--print`](#print) | | | Print the options without building | +| [`--no-cache`](#no-cache) | `bool` | | Do not use cache when building the image | +| [`--print`](#print) | `bool` | | Print the options without building | | [`--progress`](#progress) | `string` | `auto` | Set type of progress output (`auto`, `plain`, `tty`, `rawjson`). Use plain to show container output | | [`--provenance`](#provenance) | `string` | | Shorthand for `--set=*.attest=type=provenance` | -| [`--pull`](#pull) | | | Always attempt to pull all referenced images | -| `--push` | | | Shorthand for `--set=*.output=type=registry` | +| [`--pull`](#pull) | `bool` | | Always attempt to pull all referenced images | +| `--push` | `bool` | | Shorthand for `--set=*.output=type=registry` | | [`--sbom`](#sbom) | `string` | | Shorthand for `--set=*.attest=type=sbom` | | [`--set`](#set) | `stringArray` | | Override target value (e.g., `targetpattern.key=value`) | diff --git a/docs/reference/buildx_build.md b/docs/reference/buildx_build.md index 2ca8dce8..398b5a53 100644 --- a/docs/reference/buildx_build.md +++ b/docs/reference/buildx_build.md @@ -26,23 +26,23 @@ Start a build | [`--cache-to`](#cache-to) | `stringArray` | | Cache export destinations (e.g., `user/app:cache`, `type=local,dest=path/to/dir`) | | `--call` | `string` | `build` | Set method for evaluating build (`check`, `outline`, `targets`) | | [`--cgroup-parent`](#cgroup-parent) | `string` | | Set the parent cgroup for the `RUN` instructions during build | -| `--check` | | | Shorthand for `--call=check` | -| `--detach` | | | Detach buildx server (supported only on linux) (EXPERIMENTAL) | +| `--check` | `bool` | | Shorthand for `--call=check` | +| `--detach` | `bool` | | Detach buildx server (supported only on linux) (EXPERIMENTAL) | | [`-f`](#file), [`--file`](#file) | `string` | | Name of the Dockerfile (default: `PATH/Dockerfile`) | | `--iidfile` | `string` | | Write the image ID to a file | | `--label` | `stringArray` | | Set metadata for an image | -| [`--load`](#load) | | | Shorthand for `--output=type=docker` | +| [`--load`](#load) | `bool` | | Shorthand for `--output=type=docker` | | [`--metadata-file`](#metadata-file) | `string` | | Write build result metadata to a file | | [`--network`](#network) | `string` | `default` | Set the networking mode for the `RUN` instructions during build | -| `--no-cache` | | | Do not use cache when building the image | +| `--no-cache` | `bool` | | Do not use cache when building the image | | [`--no-cache-filter`](#no-cache-filter) | `stringArray` | | Do not cache specified stages | | [`-o`](#output), [`--output`](#output) | `stringArray` | | Output destination (format: `type=local,dest=path`) | | [`--platform`](#platform) | `stringArray` | | Set target platform for build | | [`--progress`](#progress) | `string` | `auto` | Set type of progress output (`auto`, `plain`, `tty`, `rawjson`). Use plain to show container output | | [`--provenance`](#provenance) | `string` | | Shorthand for `--attest=type=provenance` | -| `--pull` | | | Always attempt to pull all referenced images | -| [`--push`](#push) | | | Shorthand for `--output=type=registry` | -| `-q`, `--quiet` | | | Suppress the build output and print image ID on success | +| `--pull` | `bool` | | Always attempt to pull all referenced images | +| [`--push`](#push) | `bool` | | Shorthand for `--output=type=registry` | +| `-q`, `--quiet` | `bool` | | Suppress the build output and print image ID on success | | `--root` | `string` | | Specify root directory of server to connect (EXPERIMENTAL) | | [`--sbom`](#sbom) | `string` | | Shorthand for `--attest=type=sbom` | | [`--secret`](#secret) | `stringArray` | | Secret to expose to the build (format: `id=mysecret[,src=/local/secret]`) | diff --git a/docs/reference/buildx_create.md b/docs/reference/buildx_create.md index 136a3406..554e2db7 100644 --- a/docs/reference/buildx_create.md +++ b/docs/reference/buildx_create.md @@ -11,17 +11,17 @@ Create a new builder instance | Name | Type | Default | Description | |:------------------------------------------|:--------------|:--------|:----------------------------------------------------------------------| -| [`--append`](#append) | | | Append a node to builder instead of changing it | -| `--bootstrap` | | | Boot builder after creation | +| [`--append`](#append) | `bool` | | Append a node to builder instead of changing it | +| `--bootstrap` | `bool` | | Boot builder after creation | | [`--buildkitd-config`](#buildkitd-config) | `string` | | BuildKit daemon config file | | [`--buildkitd-flags`](#buildkitd-flags) | `string` | | BuildKit daemon flags | | [`--driver`](#driver) | `string` | | Driver to use (available: `docker-container`, `kubernetes`, `remote`) | | [`--driver-opt`](#driver-opt) | `stringArray` | | Options for the driver | -| [`--leave`](#leave) | | | Remove a node from builder instead of changing it | +| [`--leave`](#leave) | `bool` | | Remove a node from builder instead of changing it | | [`--name`](#name) | `string` | | Builder instance name | | [`--node`](#node) | `string` | | Create/modify node with given name | | [`--platform`](#platform) | `stringArray` | | Fixed platforms for current node | -| [`--use`](#use) | | | Set the current builder instance | +| [`--use`](#use) | `bool` | | Set the current builder instance | diff --git a/docs/reference/buildx_debug_build.md b/docs/reference/buildx_debug_build.md index de10ac0b..a7dd373a 100644 --- a/docs/reference/buildx_debug_build.md +++ b/docs/reference/buildx_debug_build.md @@ -22,23 +22,23 @@ Start a build | `--cache-to` | `stringArray` | | Cache export destinations (e.g., `user/app:cache`, `type=local,dest=path/to/dir`) | | `--call` | `string` | `build` | Set method for evaluating build (`check`, `outline`, `targets`) | | `--cgroup-parent` | `string` | | Set the parent cgroup for the `RUN` instructions during build | -| `--check` | | | Shorthand for `--call=check` | -| `--detach` | | | Detach buildx server (supported only on linux) (EXPERIMENTAL) | +| `--check` | `bool` | | Shorthand for `--call=check` | +| `--detach` | `bool` | | Detach buildx server (supported only on linux) (EXPERIMENTAL) | | `-f`, `--file` | `string` | | Name of the Dockerfile (default: `PATH/Dockerfile`) | | `--iidfile` | `string` | | Write the image ID to a file | | `--label` | `stringArray` | | Set metadata for an image | -| `--load` | | | Shorthand for `--output=type=docker` | +| `--load` | `bool` | | Shorthand for `--output=type=docker` | | `--metadata-file` | `string` | | Write build result metadata to a file | | `--network` | `string` | `default` | Set the networking mode for the `RUN` instructions during build | -| `--no-cache` | | | Do not use cache when building the image | +| `--no-cache` | `bool` | | Do not use cache when building the image | | `--no-cache-filter` | `stringArray` | | Do not cache specified stages | | `-o`, `--output` | `stringArray` | | Output destination (format: `type=local,dest=path`) | | `--platform` | `stringArray` | | Set target platform for build | | `--progress` | `string` | `auto` | Set type of progress output (`auto`, `plain`, `tty`, `rawjson`). Use plain to show container output | | `--provenance` | `string` | | Shorthand for `--attest=type=provenance` | -| `--pull` | | | Always attempt to pull all referenced images | -| `--push` | | | Shorthand for `--output=type=registry` | -| `-q`, `--quiet` | | | Suppress the build output and print image ID on success | +| `--pull` | `bool` | | Always attempt to pull all referenced images | +| `--push` | `bool` | | Shorthand for `--output=type=registry` | +| `-q`, `--quiet` | `bool` | | Suppress the build output and print image ID on success | | `--root` | `string` | | Specify root directory of server to connect (EXPERIMENTAL) | | `--sbom` | `string` | | Shorthand for `--attest=type=sbom` | | `--secret` | `stringArray` | | Secret to expose to the build (format: `id=mysecret[,src=/local/secret]`) | diff --git a/docs/reference/buildx_du.md b/docs/reference/buildx_du.md index b1fdbcbf..3ac8d950 100644 --- a/docs/reference/buildx_du.md +++ b/docs/reference/buildx_du.md @@ -13,7 +13,7 @@ Disk usage |:------------------------|:---------|:--------|:-----------------------------------------| | [`--builder`](#builder) | `string` | | Override the configured builder instance | | `--filter` | `filter` | | Provide filter values | -| [`--verbose`](#verbose) | | | Provide a more verbose output | +| [`--verbose`](#verbose) | `bool` | | Provide a more verbose output | diff --git a/docs/reference/buildx_imagetools_create.md b/docs/reference/buildx_imagetools_create.md index ce8827fb..7fb1159b 100644 --- a/docs/reference/buildx_imagetools_create.md +++ b/docs/reference/buildx_imagetools_create.md @@ -12,9 +12,9 @@ Create a new image based on source images | Name | Type | Default | Description | |:---------------------------------|:--------------|:--------|:------------------------------------------------------------------------------------------------------------------------------| | [`--annotation`](#annotation) | `stringArray` | | Add annotation to the image | -| [`--append`](#append) | | | Append to existing manifest | +| [`--append`](#append) | `bool` | | Append to existing manifest | | [`--builder`](#builder) | `string` | | Override the configured builder instance | -| [`--dry-run`](#dry-run) | | | Show final image instead of pushing | +| [`--dry-run`](#dry-run) | `bool` | | Show final image instead of pushing | | [`-f`](#file), [`--file`](#file) | `stringArray` | | Read source descriptor from file | | `--prefer-index` | `bool` | `true` | When only a single source is specified, prefer outputting an image index or manifest list instead of performing a carbon copy | | `--progress` | `string` | `auto` | Set type of progress output (`auto`, `plain`, `tty`, `rawjson`). Use plain to show container output | diff --git a/docs/reference/buildx_imagetools_inspect.md b/docs/reference/buildx_imagetools_inspect.md index bacbd15a..69a396b6 100644 --- a/docs/reference/buildx_imagetools_inspect.md +++ b/docs/reference/buildx_imagetools_inspect.md @@ -13,7 +13,7 @@ Show details of an image in the registry |:------------------------|:---------|:----------------|:----------------------------------------------| | [`--builder`](#builder) | `string` | | Override the configured builder instance | | [`--format`](#format) | `string` | `{{.Manifest}}` | Format the output using the given Go template | -| [`--raw`](#raw) | | | Show original, unformatted JSON manifest | +| [`--raw`](#raw) | `bool` | | Show original, unformatted JSON manifest | diff --git a/docs/reference/buildx_inspect.md b/docs/reference/buildx_inspect.md index 4976ce6b..066b9881 100644 --- a/docs/reference/buildx_inspect.md +++ b/docs/reference/buildx_inspect.md @@ -11,7 +11,7 @@ Inspect current builder instance | Name | Type | Default | Description | |:----------------------------|:---------|:--------|:--------------------------------------------| -| [`--bootstrap`](#bootstrap) | | | Ensure builder has booted before inspecting | +| [`--bootstrap`](#bootstrap) | `bool` | | Ensure builder has booted before inspecting | | [`--builder`](#builder) | `string` | | Override the configured builder instance | diff --git a/docs/reference/buildx_prune.md b/docs/reference/buildx_prune.md index 5816ad0d..df739831 100644 --- a/docs/reference/buildx_prune.md +++ b/docs/reference/buildx_prune.md @@ -11,12 +11,12 @@ Remove build cache | Name | Type | Default | Description | |:------------------------|:---------|:--------|:------------------------------------------| -| `-a`, `--all` | | | Include internal/frontend images | +| `-a`, `--all` | `bool` | | Include internal/frontend images | | [`--builder`](#builder) | `string` | | Override the configured builder instance | | `--filter` | `filter` | | Provide filter values (e.g., `until=24h`) | -| `-f`, `--force` | | | Do not prompt for confirmation | +| `-f`, `--force` | `bool` | | Do not prompt for confirmation | | `--keep-storage` | `bytes` | `0` | Amount of disk space to keep for cache | -| `--verbose` | | | Provide a more verbose output | +| `--verbose` | `bool` | | Provide a more verbose output | diff --git a/docs/reference/buildx_rm.md b/docs/reference/buildx_rm.md index 0f509ddc..a9e7cca2 100644 --- a/docs/reference/buildx_rm.md +++ b/docs/reference/buildx_rm.md @@ -11,11 +11,11 @@ Remove one or more builder instances | Name | Type | Default | Description | |:------------------------------------|:---------|:--------|:-----------------------------------------| -| [`--all-inactive`](#all-inactive) | | | Remove all inactive builders | +| [`--all-inactive`](#all-inactive) | `bool` | | Remove all inactive builders | | [`--builder`](#builder) | `string` | | Override the configured builder instance | -| [`-f`](#force), [`--force`](#force) | | | Do not prompt for confirmation | -| [`--keep-daemon`](#keep-daemon) | | | Keep the BuildKit daemon running | -| [`--keep-state`](#keep-state) | | | Keep BuildKit state | +| [`-f`](#force), [`--force`](#force) | `bool` | | Do not prompt for confirmation | +| [`--keep-daemon`](#keep-daemon) | `bool` | | Keep the BuildKit daemon running | +| [`--keep-state`](#keep-state) | `bool` | | Keep BuildKit state | diff --git a/docs/reference/buildx_use.md b/docs/reference/buildx_use.md index e463d4eb..c52cde32 100644 --- a/docs/reference/buildx_use.md +++ b/docs/reference/buildx_use.md @@ -12,8 +12,8 @@ Set the current builder instance | Name | Type | Default | Description | |:------------------------|:---------|:--------|:-------------------------------------------| | [`--builder`](#builder) | `string` | | Override the configured builder instance | -| `--default` | | | Set builder as default for current context | -| `--global` | | | Builder persists context changes | +| `--default` | `bool` | | Set builder as default for current context | +| `--global` | `bool` | | Builder persists context changes |