首页 > 代码库 > [Docker] Download and Remove Docker Images
[Docker] Download and Remove Docker Images
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 versiondocker pull mongo:3.0.0 // download the version 3.0docker pull mhart/alpine-node // download libaray from user mhart
View all images:
docker images
Delete images:
docker rmi mongodocker rmi mogno:3.0.0docker rmi d508 // delete according to id, id doesn‘t need to be full name unless it is unqiue
[Docker] Download and Remove Docker Images
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。