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
相关推荐
yt948323 小时前
Docker-基础(数据卷、自定义镜像、Compose)
运维·docker·容器
Hfc.3 小时前
docker-daemon.json
docker·容器·json
水银嘻嘻5 小时前
web 自动化之 KDT 关键字驱动详解
运维·自动化
Vone_665 小时前
node.js 邮箱验证服务器搭建
运维·服务器·node.js
丢丢丢丢丢丢~6 小时前
apache2的默认html修改
linux·运维·服务器
wusam6 小时前
Linux系统管理与编程20:Apache
linux·运维·服务器·apache·shell编程
ChironW6 小时前
Ubuntu 24.04 LTS系统上配置国内时间同步
linux·运维·服务器·ubuntu
TPBoreas6 小时前
排查服务器内存空间预警思路
运维·服务器
*郑*7 小时前
nginx配置反向代理后端
运维·nginx
Web极客码8 小时前
虚拟主机与独立服务器:哪个更好?
运维·服务器·虚拟主机