Difference between Docker registry and repository

后端 未结 7 1875
醉酒成梦
醉酒成梦 2020-12-22 20:17

I\'m confused as to the difference between docker registries and repositories. It seems like the Docker documentation uses the two words interchangeably. Also, repositories

7条回答
  •  失恋的感觉
    2020-12-22 20:54

    A docker repository is a cute combination of registry and image.

    docker tag foo /:
    

    is the same as

    docker tag foo :
    

提交回复
热议问题