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
相关推荐
望舒同学3 小时前
Docker上云踩坑实录
docker·全栈
Knight_AL3 小时前
MinIO 入门实战:Docker 安装 + Spring Boot 文件上传(公有 / 私有)
spring boot·docker·容器
大聪明-PLUS4 小时前
Linux进程间通信(IPC)指南 - 第3部分
linux·嵌入式·arm·smarc
better_liang5 小时前
每日Java面试场景题知识点之-Docker容器化部署
java·docker·微服务·devops·容器化·企业级开发
南山nash5 小时前
Docker 网络详细讲解
运维·docker·容器
白驹过隙不负青春5 小时前
Docker-compose部署java服务及前端服务
java·运维·前端·docker·容器·centos
Carry3456 小时前
Nexus respository 搭建前端 npm 私服
前端·docker
阿杰 AJie6 小时前
Ubuntu 22.04 安装 Docker
linux·ubuntu·docker
赵文宇(温玉)6 小时前
Docker是时代发展的产物
运维·docker·容器
赵文宇(温玉)7 小时前
Docker发展时间线(2008~2025)
运维·docker·容器