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
相关推荐
新手上路狂踩坑5 分钟前
Android Studio的笔记--BusyBox相关
android·linux·笔记·android studio·busybox
谷莠子9051 小时前
hadoop实验之创业有感
hadoop·docker·团队开发
G丶AEOM1 小时前
Docker快速入门
docker
大熊程序猿1 小时前
airflow docker 安装
运维·docker·容器
带电的小王3 小时前
Docker在Ubuntu上安装
ubuntu·docker
fanruitian3 小时前
docker 为单个容器设置代理
运维·docker·容器
梁萌3 小时前
Docker快速安装Tomcat
docker·容器·tomcat·镜像
Doker 多克5 小时前
IntelliJ IDEA Docker集成
spring cloud·docker·intellij-idea
シ風箏8 小时前
Neo4j【环境部署 02】图形数据库Neo4j在Linux系统ARM架构下的安装使用
linux·数据库·arm·neo4j
筏镜11 小时前
调整docker bridge地址冲突,通过bip调整 bridge地址
java·docker·eureka