`

Docker常用Shell收藏

 
阅读更多

转自:http://jamlee.cn/2015/03/22/docker%E4%B8%8E%E7%B2%BE%E5%BD%A9%E7%9A%84shell/

0x1:删除所有标签为none的镜像

1
for i in `sudo docker images|grep \<none\>|awk '{print $3}'`;do sudo docker rmi $i;done

或者

1
docker images|grep \<none\>|awk '{print $3}' | xargs docker rmi

0x2:Dockerfile换源的简单方法

Ubuntu添加:

RUN sed -i 's/http:\/\/archive\.ubuntu\.com\/ubuntu\//http:\/\/mirrors\.163\.com\/ubuntu\//g' /etc/apt/sources.list
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics