コンテナランタイム - CI/CD用語集の定義
コンテナランタイムは、イメージから実際にコンテナを実行するソフトウェアで、プロセスの分離、namespace、cgroupを扱います。一般的なランタイムはcontainerd、CRI-O、そして低レベルのruncです。
CIでは
docker build や container: のjobが動作するには、runnerにコンテナランタイムがインストールされている必要があります。GitHubホストのrunnerにはDockerが同梱されています。self-hostedのrunnerでは、containerdやDockerを自分でインストールしなければなりません。
関連ガイド
OCI Runtime Spec - CI/CD Glossary DefinitionOCI Runtime Spec: The OCI runtime spec is the Open Container Initiative standard defining how a container is…
Container Image Registry - CI/CD Glossary DefinitionContainer Image Registry: A container image registry is a server that stores and distributes container images…
Rootless Container - CI/CD Glossary DefinitionRootless Container: A rootless container runs without root privileges on the host by mapping the container ro…