Docker registry — это система хранения и распределения Docker образов — вы push образы в неё и pull их из неё. 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)
