Docker镜像操作
一、查看镜像
docker images # 查看本地镜像
二、搜索镜像
docker search 镜像名字
docker search centos
三、下载(拉取)镜像
自己在https://hub.docker.com/先找,找完再拉。
docker pull centos:版本号
docker pull centos # 表示下载最新的,等同于docker pull centos:latest
docker pull centos:7
docker pull centos:centos6.6
四、删除镜像
docker rmi 镜像名字/id号
# 一次性删除所有镜像
docker rmi `docker images -q` # 这个不要用
docker images -q # 过滤出所有id号