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
相关推荐
有毒的教程7 小时前
Ubuntu 虚拟机磁盘空间不足完整解决教程
linux·运维·ubuntu
geNE GENT7 小时前
Nginx WebSocket 长连接及数据容量配置
运维·websocket·nginx
Cx330❀9 小时前
一文吃透Linux System V共享内存:原理+实操+避坑指南
大数据·linux·运维·服务器·人工智能
薛定谔的悦9 小时前
储能系统(EMS)核心架构解析:充放电控制、防逆流、防过载与 PID 调节
linux·运维·架构
志栋智能9 小时前
超自动化运维的终极目标:让系统自治运行
运维·网络·人工智能·安全·自动化
阿 才9 小时前
WSL2 + TFTP + 网络启动(Linux开发板与WSL2建立网络连接)
linux·运维·网络
Benszen10 小时前
Docker容器化技术全解析
运维·docker·容器
IMPYLH10 小时前
Linux 的 false 命令
linux·运维·服务器·bash
小江的记录本10 小时前
【Linux】《Linux常用命令汇总表》
linux·运维·服务器·前端·windows·后端·macos
一匹电信狗11 小时前
【Linux我做主】进程程序替换和exec函数族
linux·运维·服务器·c++·ubuntu·小程序·开源