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