004、image(镜像) 操作命令


 

一、镜像命令

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

 

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM