一、镜像命令
1、查看镜像 (查看本机的镜像)
docker images
共2个镜像 (jenkins/jenkins 和 hello-world )。
2、搜索镜像 (优先在本地搜索,如果本地搜索不到会自动到远程仓库搜索。)
docker search nginx
3、下载镜像到本地 (拉取镜像)
docker pull xxxx(比如:nginx)
docker pull nginx 后面可以加上 Tag ,默认下载最新版本的 nginx ,可以自己指定 Tag版本 下载 ;
4、给镜像重命名 (复制一份再起别名)
docker tag hello-world:latest newhello-wprld:latestnew
5、删除镜像
docker rmi hello-world:latest
一般都是用 名称:标签 标识唯一 ;比如:docker rmi hello-world:latest
6、查看镜像信息
docker image inspect nginx:latest