您的位置:首页 > 运维架构 > Docker

[Docker] Download and Remove Docker Images

2016-12-02 01:50 549 查看
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
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: