Merge pull request #24252 from dvdksn/fix-dbc-freshness-issues

fix dbc freshness issues
This commit is contained in:
David Karlsson
2026-03-04 21:10:44 +01:00
committed by GitHub
2 changed files with 4 additions and 10 deletions

View File

@@ -47,12 +47,7 @@ cache, and encryption in transit. That means there are no shared processes or
data between cloud builders.
> [!NOTE]
>
> Docker Build Cloud is currently only available in the US East region. Users
> in Europe and Asia may experience increased latency compared to users based
> in North America.
>
> Support for multi-region builders is on the roadmap.
> Docker Build Cloud is only available in the US East region.
## Get Docker Build Cloud

View File

@@ -70,10 +70,9 @@ internal package repositories for npm or PyPI, use [build secrets](/manuals/buil
to authenticate during the build. For internal OCI registries, use `docker
login` to authenticate before building.
Note that if you use a private registry that requires authentication, you will
need to authenticate with `docker login` twice before building. This is because
the cloud builder needs to authenticate with Docker to use the cloud builder,
and then again to authenticate with the private registry.
If you use a private registry that requires authentication, you need to
authenticate twice before building: once to Docker Hub (to access Docker Build
Cloud), and once to your private registry (to push/pull images).
```console
$ echo $DOCKER_PAT | docker login docker.io -u <username> --password-stdin