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
相关推荐
星辰徐哥10 小时前
本地视频预览别只自己看:把Remotion动效项目发给客户远程验收
docker·ai·node.js·html·音视频·react·remotion
fb_1234513 小时前
Docker入门-第3章-容器镜像深度解析
运维·docker·容器
IT摆渡者15 小时前
基于 Docker 部署 Nextcloud 私有云盘(外挂 Windows 共享)项目实践
运维·docker·容器
新时代牛马17 小时前
单机 docker run 管不住了?从编排需求、期望状态到调度/自愈闭环讲透
运维·docker·容器
binqian17 小时前
Docker Desktop(WSL2 后端)三层网络互通技术文档
网络·docker·容器
LuiChun18 小时前
与精神病患者的日常探讨20260913
docker
闲云野鹤在人间18 小时前
Docker入门|第1章 容器生态系统完整解析
运维·服务器·docker·容器·centos
KIDULT°19 小时前
Docker 从 0 入门|吃透容器生态、架构与 Dockerfile 实战
docker·容器·架构
zhangzhangkeji20 小时前
stm32 ,3-2:led 闪烁、流水灯、蜂鸣器
stm32·arm
zhangzhangkeji21 小时前
stm32 笔记 - 3-1:GPIO 输出
stm32·arm