Um registro Docker é um sistema de armazenamento e distribuição de imagens Docker — você faz push de imagens para ele e faz pull delas dele. Docker Hub é o registro público padrão; organizações frequentemente usam registros privados. Os registros são como as imagens são compartilhadas e implantadas.
O que um registro faz
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)
