コンテナイメージレジストリ - CI/CD用語集の定義
コンテナイメージレジストリは、コンテナイメージをリポジトリとタグで整理して保存・配布するサーバーです。例としてはDocker Hub、GitHub Container Registry (ghcr.io)、Amazon ECR、Google Artifact Registryがあります。
仕組み
クライアントはビルドしたイメージをレジストリに push し、名前とタグで pull します(例: ghcr.io/org/app:v1.2)。CIのpipelineは通常、イメージをビルドしてpushし、その後deployのステップがそれをpullします。
関連ガイド
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…