1 个仓库
Tools that transform container images into standalone executable binaries that run without a container runtime.
Distinct from Container Execution: Existing candidates focus on running containers or host-container interaction, not the compilation of images into binaries.
Explore 1 awesome GitHub repository matching devops & infrastructure · Container-to-Executable Compilers. Refine with filters or upvote what's useful.
dockerc 是一个容器镜像编译器,将符合 OCI 标准的镜像转换为独立的二进制可执行文件。它作为一个无容器应用分发器,使容器化工作负载能够作为单个文件部署,且无需在宿主系统上安装容器运行时。 该系统通过扁平化容器镜像层并将根文件系统作为数据块嵌入到生成的静态二进制文件中,实现了零依赖分发。它使用基于 Shim 的进程执行模型来模拟容器环境,并提供了一种在无需手动端口映射的情况下向外部调用者暴露内部网络服务的机制。 其他能力包括通过命令行标志配置运行时环境和挂载卷。这些参数在执行期间直接注入到捆绑的应用进程中。
Converts OCI-compliant container images into standalone executable binaries that operate without a host container runtime.