Docker's buildx subsystem may not automatically load built images into the normal Docker cache, depending on the Docker configuration.
- Select a supported Docker platform for your host environment (e.g.
linux/arm64,linux/amd64, etc). - Run
docker buildx build [--builder <builder>] --platform <platform>.
Ordinary Docker may get confused when buildx builders are present.
Either:
- Remove any buildx builders with
docker buildx rm <builder>. Confirm withdocker buildx ls. - Explicitly append
--loadtodocker build -t <tag> .commands.