4-Docker命令之docker tag
小黑要上天 2024-08-14 11:07:02 阅读 62
1.docker tag介绍
docker tag命令是用来给docker镜像打标签
2.docker tag用法
docker tag SOURCE_IMAGE[:TAG] TARGET_IMAGE[:TAG]
<code>[root@centos79 ~]# docker tag --help
Usage: docker tag SOURCE_IMAGE[:TAG] TARGET_IMAGE[:TAG]
Create a tag TARGET_IMAGE that refers to SOURCE_IMAGE
Aliases:
docker image tag, docker tag
[root@centos79 ~]#
3.实例
3.1.docker镜像打标签
命令:
docker tag nginx:latest nginx:1.0
[root@centos79 ~]# docker images | grep nginx
nginx latest 605c77e624dd 23 months ago 141MB
[root@centos79 ~]# docker tag nginx:latest nginx:1.0
[root@centos79 ~]# docker images | grep nginx
nginx 1.0 605c77e624dd 23 months ago 141MB
nginx latest 605c77e624dd 23 months ago 141MB
[root@centos79 ~]#
上一篇: 【Linux1】为什么要学习Linux,为什么互联网公司在招聘时,会提出要有Linux经验,及其使用;一些Linux常见指令
下一篇: 【笔记】记一次在linux上通过在线安装mysql报错 CentOS 7 的官方镜像已经不再可用的解决方法+mysql配置
本文标签
声明
本文内容仅代表作者观点,或转载于其他网站,本站不以此文作为商业用途
如有涉及侵权,请联系本站进行删除
转载本站原创文章,请注明来源及作者。