Dockerレジストリは、Dockerイメージの保存と配布システムです。イメージをプッシュしてレジストリに送信し、そこからプルしてダウンロードします。Docker Hubはデフォルトのパブリックレジストリです。組織は多くの場合プライベートレジストリを使用します。レジストリはイメージの共有と展開を実現する仕組みです。
レジストリが行うこと
A REGISTRY stores and distributes Docker images:
→ PUSH an image to the registry (upload/publish it)
→ PULL an image from the registry (download it to run)
→ This is how images move between machines: build once, push, pull anywhere
(CI builds an image → pushes to a registry → production pulls and runs it)
