Is it possible for image to have multiple tags?

前端 未结 5 397
一整个雨季
一整个雨季 2021-02-02 05:45

When I am pushing new image to repo I would like it to have two tags for example 0.2 and latest. This would allow to always pull latest image version b

5条回答
  •  北海茫月
    2021-02-02 06:11

    You can create multiple tags:

    docker tag  /:0.2
    docker tag  /:latest
    

    and push these.

提交回复
热议问题