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
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
2 changes: 1 addition & 1 deletion content/manuals/desktop/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ For more frequently asked questions, see the [FAQs](/manuals/desktop/troubleshoo
- Fixed a race condition that prevented Docker Desktop Kubernetes from starting in some scenarios.
- Improved the way ECI collects image digest info from a repository in environments where proxies are configured.
- Users can now to specify a timeout when generating a private Extension Marketplace using the new `--timeout` flag.
- Removed unused internal helper tool `com.docker.admin`.
- Removed unused internal helper tool `com.docker.admin` for Mac and Linux.

#### For Mac

Expand Down
Loading