Skip to content
Merged
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

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions _vendor/modules.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# github.com/moby/moby v28.0.2+incompatible
# github.com/moby/buildkit v0.20.1
# github.com/docker/buildx v0.22.0
# github.com/docker/cli v28.0.2+incompatible
# github.com/docker/compose/v2 v2.34.0
# github.com/docker/cli v28.0.4+incompatible
# github.com/docker/compose/v2 v2.35.0
# github.com/docker/scout-cli v1.15.0
11 changes: 5 additions & 6 deletions content/manuals/build/cache/backends/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,11 @@ $ docker buildx build --push -t <registry>/<image> \

## Multiple caches

BuildKit currently only supports
[a single cache exporter](https://github.com/moby/buildkit/pull/3024). But you
can import from as many remote caches as you like. For example, a common pattern
is to use the cache of both the current branch and the main branch. The
following example shows importing cache from multiple locations using the
registry cache backend:
BuildKit supports multiple cache exporters, allowing you to push cache to more
than one destination. You can also import from as many remote caches as you'd
like. For example, a common pattern is to use the cache of both the current
branch and the main branch. The following example shows importing cache from
multiple locations using the registry cache backend:

```console
$ docker buildx build --push -t <registry>/<image> \
Expand Down
4 changes: 2 additions & 2 deletions content/manuals/compose/bridge/customize.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ metadata:
spec:
rules:
{{ range $name, $service := .services }}
{{ if $service.x-virtual-host }}
- host: ${{ $service.x-virtual-host }}
{{ range index $service "x-virtual-host" }}
- host: ${{ . }}
http:
paths:
- path: "/"
Expand Down
Loading