1、删除老旧的镜像
docker rmi $(docker images --format "table {{.Repository}}\t{{.Tag}}\t{{.ID}}\t{{.CreatedAt}}\t{{.Size}}"|awk '$4<"2018-12-00" {print $3}')
2、删除退出的容器
docker rm $(docker ps -qa --no-trunc --filter "status=exited")
3、删除没有tag的镜像
docker rmi $(docker images --format "table {{.Repository}}\t{{.Tag}}\t{{.ID}}\t{{.CreatedAt}}\t{{.Size}}"|awk '$2=="<none>" {print $3}')
网友评论