Docker error

Docker Error response from daemon: Error processing tar file(exit status 1): no space left on device

first run docker image prune to clean up all dangling images

if this didn't help you might need to check this answer

Docker error : no space left on device

WARNING: The requested image's platform (linux/amd64) does not match the detected host platform (linux/arm64/v8)

运行或者 build 的时候添加下面的选项,引起该问题的原因可能是 用户在 build 的时候指定的 platform 是linux/amd64。

复制代码
docker build --platform linux/amd64 -t nginx:latest .
docker run --platform linux/amd64 nginx:latest
相关推荐
IMPYLH1 分钟前
Linux 的 users 命令
linux·运维·服务器·前端·数据库·bash
行走的大喇叭12 分钟前
计算机系统组成及常见概念
linux·运维·计算机网络
j_xxx404_14 分钟前
Linux线程控制:从用户态控制到内核级克隆全链路解析
linux·运维·服务器·开发语言·c++·ai
猪哥-嵌入式25 分钟前
Claude Code 自动化排查流程规范
运维·自动化
半夜修仙28 分钟前
Linux小白快速上手
linux·运维·服务器
heimeiyingwang33 分钟前
【架构实战】DevOps工程化:从需求到上线的完整闭环
运维·架构·devops
青梅橘子皮36 分钟前
Linux---进程(概念,PCB,进程属性,标示符,fork)
linux·运维·服务器
仙柒4154 小时前
kubernetes 控制器 Dockerfile
运维·容器·kubernetes
hj28625110 小时前
Linux 磁盘管理 + 文件系统 + LVM 笔记整理
linux·运维
热金鼠11 小时前
Ubuntu 22.04 Docker 完整使用手册(1)
docker