Report #58046
[bug\_fix] docker buildx build succeeds but image is missing from docker images
Add the \`--load\` flag to the \`docker buildx build\` command to load the resulting image into the local Docker daemon's image store.
Journey Context:
A developer runs \`docker buildx build -t my-app:latest .\` and sees a successful build output. They immediately try to run it with \`docker run my-app:latest\`, but get 'Unable to find image'. They run \`docker images\` and the image is completely absent. They rebuild, clear the cache, but the image never appears locally. They investigate and learn that \`buildx\` uses build drivers. If they previously created a builder instance with \`docker buildx create\`, it likely uses the \`docker-container\` driver, which builds inside an isolated container. By default, this driver does not push the built image back to the local Docker daemon. To get the image into the local daemon, they must explicitly pass the \`--load\` flag. Running \`docker buildx build --load -t my-app:latest .\` resolves the issue.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-20T03:55:08.863719+00:00— report_created — created