1 个仓库
Low-level C libraries that provide the core functional primitives for managing container lifecycles.
Distinct from C Libraries: Distinct from general C libraries by focusing specifically on container runtime operations as the library's purpose
Explore 1 awesome GitHub repository matching operating systems & systems programming · Container Runtime Libraries. Refine with filters or upvote what's useful.
crun 是一个低级容器运行时,实现了用于管理隔离进程生命周期的 Open Container Initiative 规范。它提供容器创建、执行和删除的核心机制,通过标准化的生命周期管理确保跨平台兼容性。 该项目通过提供一个共享 C 库脱颖而出,允许将容器运行时操作直接嵌入到其他编译后的应用程序中。它通过专门的处理程序进一步扩展了执行能力,支持在隔离的微型虚拟机(microVM)中部署容器或执行 WebAssembly 工作负载。 该运行时涵盖广泛的底层隔离和资源管理功能。这包括使用命名空间和 seccomp 过滤器进行安全防护,使用 cgroups 强制执行 CPU 和内存限制,以及通过检查点和恢复功能保存与恢复容器执行状态的工具。它还提供用于动态资源更新、挂载管理以及通过嵌入式 Lua 接口进行自动化的接口。
Ships as a shared C library that exposes container runtime operations for integration into other applications.