首页 > 其他 > 详细

[Docker] Download and Remove Docker Images

时间:2016-12-02 07:49:18      阅读:214      评论:0      收藏:0      [点我收藏+]

Learn the basics of downloading and pulling Docker images from Docker Hub. Learn the difference between default tags and version specific tags. Also learn how to display all images, and different ways to remove images.

 

Download:

docker pull mongo            // download the latest version
docker pull mongo:3.0.0   // download the version 3.0
docker pull mhart/alpine-node  // download libaray from user mhart

 

View all images:

docker images

 

Delete images:

docker rmi mongo
docker rmi mogno:3.0.0
docker rmi d508   // delete according to id, id doesn‘t need to be full name unless it is unqiue

 

[Docker] Download and Remove Docker Images

原文:http://www.cnblogs.com/Answer1215/p/6124298.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!