1.docker tag介绍
docker tag命令是用来给docker镜像打标签
2.docker tag用法
docker tag SOURCE_IMAGE[:TAG] TARGET_IMAGE[:TAG]
[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镜像打标签
命令:文章来源:https://www.toymoban.com/news/detail-859797.html
docker tag nginx:latest nginx:1.0文章来源地址https://www.toymoban.com/news/detail-859797.html
[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 ~]#
到了这里,关于4-Docker命令之docker tag的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!