Container Image Registry - CI/CD Glossary Definition
A container image registry is a server that stores and distributes container images, organized by repository and tag. Examples include Docker Hub, GitHub Container Registry (ghcr.io), Amazon ECR, and Google Artifact Registry.
How it works
Clients push built images to the registry and pull them by name and tag (for example ghcr.io/org/app:v1.2). A CI pipeline typically builds an image, pushes it, then a deploy step pulls it.
Related guides
Image Pull Secret - CI/CD Glossary DefinitionImage Pull Secret: An image pull secret is a stored credential that lets a runtime or cluster authenticate to…
Container Runtime - CI/CD Glossary DefinitionContainer Runtime: A container runtime is the software that actually runs containers from images, handling pr…
OCI Runtime Spec - CI/CD Glossary DefinitionOCI Runtime Spec: The OCI runtime spec is the Open Container Initiative standard defining how a container is…