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