mirror of https://github.com/docker/docs.git
buildx: manually patch some broken anchors
This is fixed in master through https://github.com/docker/buildx/pull/765, but that's not in the 0.6 release branch (which does not yet have the code to generate the YAML docs). Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
5ab5246d77
commit
408b8630bd
|
@ -580,7 +580,7 @@ examples: |-
|
||||||
[related Dockerfile extensions](https://github.com/moby/buildkit/blob/master/frontend/dockerfile/docs/experimental.md#run---securityinsecuresandbox).
|
[related Dockerfile extensions](https://github.com/moby/buildkit/blob/master/frontend/dockerfile/docs/experimental.md#run---securityinsecuresandbox).
|
||||||
|
|
||||||
For entitlements to be enabled, the `buildkitd` daemon also needs to allow them
|
For entitlements to be enabled, the `buildkitd` daemon also needs to allow them
|
||||||
with `--allow-insecure-entitlement` (see [`create --buildkitd-flags`](buildx_create.md#--buildkitd-flags-flags))
|
with `--allow-insecure-entitlement` (see [`create --buildkitd-flags`](buildx_create.md#buildkitd-flags))
|
||||||
|
|
||||||
**Examples**
|
**Examples**
|
||||||
|
|
||||||
|
|
|
@ -142,7 +142,7 @@ examples: |-
|
||||||
```
|
```
|
||||||
|
|
||||||
Adds flags when starting the buildkitd daemon. They take precedence over the
|
Adds flags when starting the buildkitd daemon. They take precedence over the
|
||||||
configuration file specified by [`--config`](#--config-file). See `buildkitd --help`
|
configuration file specified by [`--config`](#config). See `buildkitd --help`
|
||||||
for the available flags.
|
for the available flags.
|
||||||
|
|
||||||
**Example**
|
**Example**
|
||||||
|
@ -158,7 +158,7 @@ examples: |-
|
||||||
```
|
```
|
||||||
|
|
||||||
Specifies the configuration file for the buildkitd daemon to use. The configuration
|
Specifies the configuration file for the buildkitd daemon to use. The configuration
|
||||||
can be overridden by [`--buildkitd-flags`](#--buildkitd-flags-flags).
|
can be overridden by [`--buildkitd-flags`](#buildkitd-flags).
|
||||||
See an [example buildkitd configuration file](https://github.com/moby/buildkit/blob/master/docs/buildkitd.toml.md).
|
See an [example buildkitd configuration file](https://github.com/moby/buildkit/blob/master/docs/buildkitd.toml.md).
|
||||||
|
|
||||||
### Set the builder driver to use (--driver) {#driver}
|
### Set the builder driver to use (--driver) {#driver}
|
||||||
|
@ -171,13 +171,13 @@ examples: |-
|
||||||
their own specificities.
|
their own specificities.
|
||||||
|
|
||||||
- `docker` - Uses the builder that is built into the docker daemon. With this
|
- `docker` - Uses the builder that is built into the docker daemon. With this
|
||||||
driver, the [`--load`](buildx_build.md#--load) flag is implied by default on
|
driver, the [`--load`](buildx_build.md#load) flag is implied by default on
|
||||||
`buildx build`. However, building multi-platform images or exporting cache is
|
`buildx build`. However, building multi-platform images or exporting cache is
|
||||||
not currently supported.
|
not currently supported.
|
||||||
- `docker-container` - Uses a buildkit container that will be spawned via docker.
|
- `docker-container` - Uses a buildkit container that will be spawned via docker.
|
||||||
With this driver, both building multi-platform images and exporting cache are
|
With this driver, both building multi-platform images and exporting cache are
|
||||||
supported. However, images built will not automatically appear in `docker images`
|
supported. However, images built will not automatically appear in `docker images`
|
||||||
(see [`build --load`](buildx_build.md#--load)).
|
(see [`build --load`](buildx_build.md#load)).
|
||||||
- `kubernetes` - Uses a kubernetes pods. With this driver, you can spin up pods
|
- `kubernetes` - Uses a kubernetes pods. With this driver, you can spin up pods
|
||||||
with defined buildkit container image to build your images.
|
with defined buildkit container image to build your images.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue