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
相关推荐
Qayrup1 小时前
docker 搭建私有仓库,推送并拉取
运维·docker·容器
郭庆汝1 小时前
docker拉取英伟达官方cuda11.8镜像
docker·cuda11.8
天下不喵3 小时前
Ubuntu24.04安装Docker过程记录
docker
冷血~多好4 小时前
使用docker部署elk,实现日志追踪
elk·docker·容器
天一生水water5 小时前
docker-compose安装
运维·docker·容器
蓝象_5 小时前
docker安装配置mysql
mysql·docker·容器
一叶知秋yyds7 小时前
Centos 安装 Docker教程
linux·docker·centos
return(b,a%b);7 小时前
docker拉取失败,更换docker的源
docker·容器·eureka
IT小哥哥呀7 小时前
Jenkins + Docker 打造自动化持续部署流水线
docker·微服务·自动化·jenkins·springboot·高并发·限流
时鲟、时倾8 小时前
docker部署kafka
docker·容器·kafka