Skip to content

Instantly share code, notes, and snippets.

@mcandre
Created January 2, 2026 20:37
Show Gist options
  • Select an option

  • Save mcandre/992d74bf4b55148459db7086096740c9 to your computer and use it in GitHub Desktop.

Select an option

Save mcandre/992d74bf4b55148459db7086096740c9 to your computer and use it in GitHub Desktop.
Docker Fix Missing Local Images

Docker Fix Missing Local Images

buildx

Docker's buildx subsystem may not automatically load built images into the normal Docker cache, depending on the Docker configuration.

  1. Select a supported Docker platform for your host environment (e.g. linux/arm64, linux/amd64, etc).
  2. Run docker buildx build [--builder <builder>] --platform <platform>.

Plain Vanilla Docker

Ordinary Docker may get confused when buildx builders are present.

Either:

  • Remove any buildx builders with docker buildx rm <builder>. Confirm with docker buildx ls.
  • Explicitly append --load to docker build -t <tag> . commands.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment