004、image(镜像) 操作命令

2021/11/7 6:10:28

本文主要是介绍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

 

 



这篇关于004、image(镜像) 操作命令的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程