Un Docker registry è un sistema di storage e distribuzione per le immagini Docker — pushare immagini su di esso e pullarle da esso. Docker Hub è il registro pubblico predefinito; le organizzazioni spesso usano registri privati. I registri sono il modo in cui le immagini vengono condivise e distribuite.
Cosa fa un registry
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)
