mirror of https://github.com/docker/docs.git
build: move drivers to building images section
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
parent
0f544008aa
commit
e25f937576
|
@ -168,7 +168,7 @@ fetch-remote:
|
||||||
- dest: "build/bake"
|
- dest: "build/bake"
|
||||||
src:
|
src:
|
||||||
- "docs/guides/bake/**"
|
- "docs/guides/bake/**"
|
||||||
- dest: "build/buildx/drivers"
|
- dest: "build/building/drivers"
|
||||||
src:
|
src:
|
||||||
- "docs/guides/drivers/**"
|
- "docs/guides/drivers/**"
|
||||||
|
|
||||||
|
|
|
@ -1391,24 +1391,24 @@ manuals:
|
||||||
section:
|
section:
|
||||||
- path: /build/building/packaging/
|
- path: /build/building/packaging/
|
||||||
title: Packaging your software
|
title: Packaging your software
|
||||||
|
- sectiontitle: Choosing a build driver
|
||||||
|
section:
|
||||||
|
- path: /build/building/drivers/
|
||||||
|
title: Overview
|
||||||
|
- path: /build/building/drivers/docker/
|
||||||
|
title: Docker driver
|
||||||
|
- path: /build/building/drivers/docker-container/
|
||||||
|
title: Docker container driver
|
||||||
|
- path: /build/building/drivers/kubernetes/
|
||||||
|
title: Kubernetes driver
|
||||||
|
- path: /build/building/drivers/remote/
|
||||||
|
title: Remote driver
|
||||||
- path: /build/building/multi-platform/
|
- path: /build/building/multi-platform/
|
||||||
title: Multi-platform images
|
title: Multi-platform images
|
||||||
- sectiontitle: Buildx
|
- sectiontitle: Buildx
|
||||||
section:
|
section:
|
||||||
- path: /build/buildx/install/
|
- path: /build/buildx/install/
|
||||||
title: Install Buildx
|
title: Install Buildx
|
||||||
- sectiontitle: Drivers
|
|
||||||
section:
|
|
||||||
- path: /build/buildx/drivers/
|
|
||||||
title: Overview
|
|
||||||
- path: /build/buildx/drivers/docker/
|
|
||||||
title: Docker driver
|
|
||||||
- path: /build/buildx/drivers/docker-container/
|
|
||||||
title: Docker container driver
|
|
||||||
- path: /build/buildx/drivers/kubernetes/
|
|
||||||
title: Kubernetes driver
|
|
||||||
- path: /build/buildx/drivers/remote/
|
|
||||||
title: Remote driver
|
|
||||||
- path: /build/buildx/multiple-builders/
|
- path: /build/buildx/multiple-builders/
|
||||||
title: Using multiple builders
|
title: Using multiple builders
|
||||||
- sectiontitle: Bake
|
- sectiontitle: Bake
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
title: "Buildx drivers overview"
|
title: "Drivers overview"
|
||||||
keywords: build, buildx, driver, builder, docker-container, kubernetes, remote
|
keywords: build, buildx, driver, builder, docker-container, kubernetes, remote
|
||||||
fetch_remote:
|
fetch_remote:
|
||||||
line_start: 2
|
line_start: 2
|
|
@ -115,9 +115,9 @@ default * docker
|
||||||
```
|
```
|
||||||
|
|
||||||
This displays the default builtin driver, that uses the BuildKit server
|
This displays the default builtin driver, that uses the BuildKit server
|
||||||
components built directly into the docker engine, also known as the [`docker` driver](../buildx/drivers/docker.md).
|
components built directly into the docker engine, also known as the [`docker` driver](../building/drivers/docker.md).
|
||||||
|
|
||||||
Create a new builder using the [`docker-container` driver](../buildx/drivers/docker-container.md)
|
Create a new builder using the [`docker-container` driver](../building/drivers/docker-container.md)
|
||||||
which gives you access to more complex features like multi-platform builds
|
which gives you access to more complex features like multi-platform builds
|
||||||
and the more advanced cache exporters, which are currently unsupported in the
|
and the more advanced cache exporters, which are currently unsupported in the
|
||||||
default `docker` driver:
|
default `docker` driver:
|
||||||
|
|
|
@ -56,7 +56,7 @@ see the [Packaging your software](building/packaging.md) page.
|
||||||
Run Buildx with different configurations depending on the scenario you are
|
Run Buildx with different configurations depending on the scenario you are
|
||||||
working on, regardless of whether you are using your local machine or a remote
|
working on, regardless of whether you are using your local machine or a remote
|
||||||
compute cluster, all from the comfort of your local working environment.
|
compute cluster, all from the comfort of your local working environment.
|
||||||
For more information on drivers, see the [drivers guide](buildx/drivers/index.md).
|
For more information on drivers, see the [drivers guide](building/drivers/index.md).
|
||||||
|
|
||||||
### Optimizing builds with cache management
|
### Optimizing builds with cache management
|
||||||
|
|
||||||
|
|
|
@ -29,7 +29,7 @@ For more details, see the complete release notes in the [Buildx GitHub repositor
|
||||||
|
|
||||||
### New features
|
### New features
|
||||||
|
|
||||||
* Support for new [driver `remote`](buildx/drivers/remote.md) that you can use
|
* Support for new [driver `remote`](building/drivers/remote.md) that you can use
|
||||||
to connect to any already running BuildKit instance {% include github_issue.md repo="docker/buildx" number="1078" %}
|
to connect to any already running BuildKit instance {% include github_issue.md repo="docker/buildx" number="1078" %}
|
||||||
{% include github_issue.md repo="docker/buildx" number="1093" %} {% include github_issue.md repo="docker/buildx" number="1094" %}
|
{% include github_issue.md repo="docker/buildx" number="1093" %} {% include github_issue.md repo="docker/buildx" number="1094" %}
|
||||||
{% include github_issue.md repo="docker/buildx" number="1103" %} {% include github_issue.md repo="docker/buildx" number="1134" %}
|
{% include github_issue.md repo="docker/buildx" number="1103" %} {% include github_issue.md repo="docker/buildx" number="1134" %}
|
||||||
|
|
Loading…
Reference in New Issue