docker tag 用於給鏡像打標籤,語法以下:docker
docker tag SOURCE_IMAGE[:TAG] TARGET_IMAGE[:TAG]
① 好比我如今有一個 centos 鏡像:centos
[root@localhost ~]$ docker images
REPOSITORY TAG IMAGE ID CREATED SIZE centos latest 1e1148e4cc2c 2 weeks ago 202MB
② 我對 centos 進行開發,開發了第一個版本,我就能夠對這個版本打標籤,打完標籤後會生成新的鏡像:spa
[root@localhost ~]$ docker tag centos centos:v1
[root@localhost ~]$ docker images REPOSITORY TAG IMAGE ID CREATED SIZE centos latest 1e1148e4cc2c 2 weeks ago 202MB centos v1 1e1148e4cc2c 2 weeks ago 202MB
③ 我繼續對 centos 進行開發,開發了第二個版本,繼續打標籤:code
[root@localhost ~]$ docker tag centos centos:v2
[root@localhost ~]$ docker images REPOSITORY TAG IMAGE ID CREATED SIZE centos latest 1e1148e4cc2c 2 weeks ago 202MB centos v1 1e1148e4cc2c 2 weeks ago 202MB centos v2 1e1148e4cc2c 2 weeks ago 202MB
④ 以此類推,每開發一個版本打一個標籤,若是之後我想回滾版本,就可使用指定標籤的鏡像來建立容器:blog
[root@localhost ~]$ docker run -itd centos:v1