Container Image Registry - Definição do Glossário CI/CD
Um container image registry é um servidor que armazena e distribui imagens de container, organizadas por repositório e tag. Exemplos incluem Docker Hub, GitHub Container Registry (ghcr.io), Amazon ECR e Google Artifact Registry.
Como funciona
Os clientes fazem push das imagens construídas para o registry e pull delas por nome e tag (por exemplo ghcr.io/org/app:v1.2). Um pipeline de CI tipicamente constrói uma imagem, faz o push dela e então um passo de deploy faz o pull.
Guias relacionados
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…