Eine Docker Registry ist ein Speicher- und Verteilungssystem für Docker Images — du pushst Images dorthin und pullst sie von dort. Docker Hub ist die Standard-Public-Registry; Organisationen nutzen oft private Registries. Registries ermöglichen den Austausch und die Bereitstellung von Images.
Was eine Registry macht
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)
