do I need to manually tag “latest” when pushing to docker public repository?

前端 未结 1 1840
渐次进展
渐次进展 2021-02-01 13:51

Suppose I have an image me/mystuff:v0.0.1

I find if I push it to the repository:

docker push me/mystuff:v0.0.1 

lat

相关标签:
1条回答
  • 2021-02-01 14:22

    The latest is just the default value of the tag if none is specified. If you push a tagged image it does not replace the current image tagged with latest.

    0 讨论(0)
提交回复
热议问题