Docker tag 命令
docker tag
:标记本地镜像,将其归入某一仓库。
语法:
docker tag [OPTIONS] IMAGE[:TAG] [REGISTRYHOST/][USERNAME/]NAME[:TAG]
实例:
将镜像ubuntu:15.10
标记为ubuntu/ubuntu:v3
镜像:
docker tag ubuntu:15.10 ubuntu/ubuntu:v3
docker images ubuntu/ubuntu:v3
##效果如下:
REPOSITORY TAG IMAGE ID CREATED SIZE
ubuntu/ubuntu v3 4e3b13c8a266 3 months ago 136.3 MB