Docker清除缓存
查看当前所有的缓存信息
docker system df
build cache 就是镜像构建的缓存
删除所有缓存
docker system prune -a -f
清除缓存, -a 代表删除所有缓存, -f 代表强制删除
仅删除镜像构建的缓存
docker builder prune -a -f
Docker清除缓存
https://lysowc.cn/archives/1719406595287
docker system df
build cache 就是镜像构建的缓存
docker system prune -a -f
清除缓存, -a 代表删除所有缓存, -f 代表强制删除
docker builder prune -a -f