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
相关推荐
码农101号3 小时前
运维安全05 - iptables规则保存与恢复
运维·网络·安全
bug攻城狮4 小时前
解决Ubuntu中apt-get -y安装时弹出交互提示的问题
linux·运维·ubuntu
夜阑珊夭夭5 小时前
linux自定义网卡名字
linux·运维
佛天华5 小时前
centos 时间校准
linux·运维·centos
DogDaoDao6 小时前
Docker全解析:从核心概念到2025年AI集成新特性
人工智能·docker·eureka·程序员
程序员在线炒粉8元1份顺丰包邮送可乐6 小时前
Docker 部署生产环境可用的 MySQL 主从架构
mysql·docker·架构
小柯J桑_6 小时前
Linux:线程封装
linux·运维·c++
zwhSunday6 小时前
Linux驱动开发(1)概念、环境与代码框架
linux·运维·驱动开发