Error AtlasError Documentation and Resolution

Docker Buildx could not load a multi-platform build result locally

Loading the build result for multi-platform images is not supported.

Docker Buildx cannot load a multi-platform image directly into the local image store in this workflow, so the build must be pushed to a registry or exported differently.

Loading the build result for multi-platform images is not supportedbuildx
Loading the build result for multi-platform images is not supported.
  • The build targets multiple platforms and the selected workflow does not support loading the result into the local image store.
  • The command uses a builder or output mode that requires pushing multi-platform output instead of loading it locally.
  1. Use docker buildx build --push for multi-platform builds that should be published to a registry.
  2. Change the output strategy if a local load is required for a single-platform build.
  3. Review the builder and output mode to confirm whether local loading is supported.
Docker Docs: Build Cloud usage
Docker Buildx multi-platform load not supported: causes and fixes | Error Atlas