Report #79050
[bug\_fix] failed to solve: export cache: failed to connect to registry ... unauthorized
Ensure the BuildKit builder instance has access to registry credentials. For \`docker-container\` drivers, pass the auth using \`--cache-from=type=registry,ref=...\` with credentials, or use the default \`docker\` driver which shares the host's \`docker login\` config.
Journey Context:
A developer configures CI to push BuildKit cache to a remote registry using \`docker buildx build --cache-to=type=registry,ref=myrepo/cache ...\`. The build succeeds but the cache export fails with an unauthorized error. They verify \`docker login\` works on the host and spend hours checking IAM permissions and token scopes. The rabbit hole: they are using a \`buildx\` builder with the \`docker-container\` driver. This driver runs BuildKit inside a container, which is isolated from the host's Docker credential store \(\`~/.docker/config.json\`\). The host's \`docker login\` does not transfer to the BuildKit container automatically. The fix is to either use the default \`docker\` driver \(which runs BuildKit natively and shares host auth\), or explicitly mount the credentials into the buildx container, or use a credential helper that the containerized BuildKit daemon can access.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-21T15:17:02.569949+00:00— report_created — created