mirror of https://github.com/docker/cli.git
docs: fix links to BuildKit backend
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
parent
110c4d92b8
commit
a7717513b3
|
@ -321,7 +321,7 @@ directory from the context. Its effect can be seen in the changed size of the
|
||||||
uploaded context. The builder reference contains detailed information on
|
uploaded context. The builder reference contains detailed information on
|
||||||
[creating a .dockerignore file](https://docs.docker.com/engine/reference/builder/#dockerignore-file).
|
[creating a .dockerignore file](https://docs.docker.com/engine/reference/builder/#dockerignore-file).
|
||||||
|
|
||||||
When using the [BuildKit backend](https://docs.docker.com/engine/reference/builder/#buildkit),
|
When using the [BuildKit backend](https://docs.docker.com/build/buildkit/),
|
||||||
`docker build` searches for a `.dockerignore` file relative to the Dockerfile
|
`docker build` searches for a `.dockerignore` file relative to the Dockerfile
|
||||||
name. For example, running `docker build -f myapp.Dockerfile .` will first look
|
name. For example, running `docker build -f myapp.Dockerfile .` will first look
|
||||||
for an ignore file named `myapp.Dockerfile.dockerignore`. If such a file is not
|
for an ignore file named `myapp.Dockerfile.dockerignore`. If such a file is not
|
||||||
|
@ -498,7 +498,7 @@ $ docker build -t mybuildimage --target build-env .
|
||||||
> **Note**
|
> **Note**
|
||||||
>
|
>
|
||||||
> This feature requires the BuildKit backend. You can either
|
> This feature requires the BuildKit backend. You can either
|
||||||
> [enable BuildKit](https://docs.docker.com/engine/reference/builder/#buildkit) or
|
> [enable BuildKit](https://docs.docker.com/build/buildkit/#getting-started) or
|
||||||
> use the [buildx](https://github.com/docker/buildx) plugin which provides more
|
> use the [buildx](https://github.com/docker/buildx) plugin which provides more
|
||||||
> output type options.
|
> output type options.
|
||||||
|
|
||||||
|
@ -592,7 +592,7 @@ vndr
|
||||||
> **Note**
|
> **Note**
|
||||||
>
|
>
|
||||||
> This feature requires the BuildKit backend. You can either
|
> This feature requires the BuildKit backend. You can either
|
||||||
> [enable BuildKit](https://docs.docker.com/engine/reference/builder/#buildkit) or
|
> [enable BuildKit](https://docs.docker.com/build/buildkit/#getting-started) or
|
||||||
> use the [buildx](https://github.com/docker/buildx) plugin. The previous
|
> use the [buildx](https://github.com/docker/buildx) plugin. The previous
|
||||||
> builder has limited support for reusing cache from pre-pulled images.
|
> builder has limited support for reusing cache from pre-pulled images.
|
||||||
|
|
||||||
|
|
|
@ -77,7 +77,7 @@ line:
|
||||||
| `DOCKER_HIDE_LEGACY_COMMANDS` | When set, Docker hides "legacy" top-level commands (such as `docker rm`, and `docker pull`) in `docker help` output, and only `Management commands` per object-type (e.g., `docker container`) are printed. This may become the default in a future release, at which point this environment-variable is removed. |
|
| `DOCKER_HIDE_LEGACY_COMMANDS` | When set, Docker hides "legacy" top-level commands (such as `docker rm`, and `docker pull`) in `docker help` output, and only `Management commands` per object-type (e.g., `docker container`) are printed. This may become the default in a future release, at which point this environment-variable is removed. |
|
||||||
| `DOCKER_HOST` | Daemon socket to connect to. |
|
| `DOCKER_HOST` | Daemon socket to connect to. |
|
||||||
| `DOCKER_TLS_VERIFY` | When set Docker uses TLS and verifies the remote. This variable is used both by the `docker` CLI and the [`dockerd` daemon](dockerd.md) |
|
| `DOCKER_TLS_VERIFY` | When set Docker uses TLS and verifies the remote. This variable is used both by the `docker` CLI and the [`dockerd` daemon](dockerd.md) |
|
||||||
| `BUILDKIT_PROGRESS` | Set type of progress output (`auto`, `plain`, `tty`) when [building](build.md) with [BuildKit backend](https://docs.docker.com/engine/reference/builder/#buildkit). Use plain to show container output (default `auto`). |
|
| `BUILDKIT_PROGRESS` | Set type of progress output (`auto`, `plain`, `tty`) when [building](build.md) with [BuildKit backend](https://docs.docker.com/build/buildkit/). Use plain to show container output (default `auto`). |
|
||||||
|
|
||||||
Because Docker is developed using Go, you can also use any environment
|
Because Docker is developed using Go, you can also use any environment
|
||||||
variables used by the Go runtime. In particular, you may find these useful:
|
variables used by the Go runtime. In particular, you may find these useful:
|
||||||
|
|
Loading…
Reference in New Issue