Un registro de Docker es un sistema de almacenamiento y distribución de imágenes de Docker — subes imágenes a él y las bajas de él. Docker Hub es el registro público predeterminado; las organizaciones frecuentemente usan registros privados. Los registros son la forma en que se comparten e implementan las imágenes.
Qué hace un registro
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)
