no matching manifest for linux/amd64 in the manifest list entries

F:\VirtualMachines>docker pull arm64v8/busybox

Using default tag: latest latest:

Pulling from arm64v8/busybox

no matching manifest for linux/amd64 in the manifest list entries

The error indicates a mismatch between the architecture of your host machine (Windows PC, likely amd64) and the requested Docker image (arm64v8/busybox for ARM architecture). The docker pull command won't work on your Windows machine for an ARM-based image because it's trying to pull an ARM-compatible image on an x86-based system.

Here's how to properly handle this situation:


Solution: Use Docker's Multi-Arch Capability or Emulation

Use Docker Buildx to Pull the Correct Architecture

Docker Buildx can emulate ARM architecture on your amd64 Windows system. Follow these steps:

  1. Enable Buildx on Docker Desktop (Windows): Ensure Docker Desktop is installed and configured for Buildx. To check:

    bash 复制代码
    docker buildx version

    If not enabled, you may need to configure it via Docker Desktop settings.

  2. Pull the ARM-specific Image: Use the --platform flag to specify the target architecture:

    bash 复制代码
    docker pull --platform linux/arm64 busybox
  3. Save the Image: Save the image to a file for transfer:

    bash 复制代码
    docker save -o busybox-arm.tar busybox
  4. Transfer and Load on Raspberry Pi: Transfer the tar file to your Raspberry Pi (e.g., via SCP or USB) and load it:

    bash 复制代码
    docker load -i busybox-arm.tar
相关推荐
正经教主11 小时前
【docker基础】第一课、从零开始理解容器技术
docker·云原生·容器·eureka
萌萌哒草头将军12 小时前
CloudDock(云仓):新一代开源NAS网络代理工具
服务器·网络协议·docker
正经教主14 小时前
【docker基础】0、系统学习docker之总计划
学习·docker·容器
Yang三少喜欢撸铁14 小时前
【Centos7通过kubeadm方式部署kubernetes1.30版本【一主两从】】
docker·kubernetes·container
杨浦老苏17 小时前
开源宠物健康护理追踪器EinVault
docker·群晖·宠物·健康管理
@土豆17 小时前
基于Docker部署Squid正向代理文档
运维·docker·容器
林润庚17 小时前
win 安装openclaw (docker镜像模式),解决18789访问失败问题
docker·openclaw·龙虾
正经教主19 小时前
【docker基础】Ubuntu 安装 Docker 超详细小白教程
ubuntu·docker·eureka
小江的记录本20 小时前
【Swagger】Swagger系统性知识体系全方位结构化总结
java·前端·后端·python·mysql·spring·docker
正经教主20 小时前
【docker基础】第二课:安装、配置与基础命令
docker·容器·eureka