# OCI

开放容器标准 (Open Container Initiative, OCI) 是用于规范容器格式和运行时行业标准。目前 OCI 提出的规范有:

  • OCI Runtime Specification
  • OCI Image Format
  • OCI Distribution Specification

# CRI

容器运行时 (Container Runtime Interface, CRI) 定义了容器和镜像的接口,目前官方支持的容器运行时包括 Docker、Containerd、CRI-O 和 frakti。

# 参考链接

# 文档

  • Introducing Container Runtime Interface (CRI) in Kubernetes
  • cri-o

# 实现

  • runc OCI Runtime 的参考实现
  • Kata Containers 提供高性能的硬件虚拟化容器运行时
  • gvisor Go 实现的基于用户态内核的容器运行时
  • buildkit docker build 拆分出来的 build 项目