awesome-repositories.com
博客
MCP
awesome-repositories.com

通过 AI 驱动的搜索,发现最优秀的开源仓库。

探索精选搜索开源替代品自托管软件博客网站地图
项目MCP 服务器关于排名机制媒体报道
法律隐私政策服务条款
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

4 个仓库

Awesome GitHub RepositoriesContainer Runtime Hooks

Pre-start mechanisms that inject drivers and libraries into container environments during creation.

Distinct from Dependency Injection Containers: Distinct from Dependency Injection Containers: focuses on container lifecycle hooks for hardware integration rather than application-level dependency management.

Explore 4 awesome GitHub repositories matching software engineering & architecture · Container Runtime Hooks. Refine with filters or upvote what's useful.

Awesome Container Runtime Hooks GitHub Repositories

用 AI 发现最棒的仓库。我们将通过 AI 为您搜索最匹配的仓库。
  • nvidia/nvidia-dockerNVIDIA 的头像

    NVIDIA/nvidia-docker

    17,496在 GitHub 上查看↗

    NVIDIA Docker is a container runtime wrapper that enables the use of host-level graphics processing units within isolated container environments. It functions as a containerized GPU orchestrator, mapping physical hardware resources into virtualized environments to support high-performance computing and machine learning workloads. The project provides a toolkit that facilitates integration between containerized applications and host-level graphics hardware. By utilizing a pre-start hook to intercept container creation, the runtime injects necessary device drivers and libraries into the isolate

    Provides pre-start hooks that inject necessary host drivers and libraries into isolated container environments.

    cudadockergpu
    在 GitHub 上查看↗17,496
  • cri-o/cri-ocri-o 的头像

    cri-o/cri-o

    5,629在 GitHub 上查看↗

    CRI-O is an open-source container runtime that implements the Kubernetes Container Runtime Interface (CRI) to manage container images, pods, and containers on cluster nodes using OCI-compatible runtimes. It serves as a node-level container manager that handles image pulling, container lifecycle, and resource monitoring for Kubernetes clusters, running containers according to the Open Container Initiative specifications. The runtime distinguishes itself through live configuration reloading that applies changes to runtime definitions, registry mirrors, and TLS certificates without restarting th

    Injects OCI-compliant hooks during container creation to extend runtime behavior.

    Go
    在 GitHub 上查看↗5,629
  • opencontainers/runtime-specopencontainers 的头像

    opencontainers/runtime-spec

    3,641在 GitHub 上查看↗

    The project provides an open container runtime specification and standardized schema for defining container configurations, namespaces, resource limits, security policies, and filesystem mounts across platforms. It outlines the formal configuration formats, lifecycle operations, and execution environments necessary for portable, isolated container workloads. The specification covers container lifecycle management protocols and structured rules governing container creation, execution startup, process signaling, state tracking, and resource teardown. It standardizes local bundle packaging and

    Enumerates recognized names of lifecycle hooks supported for container execution.

    Gocontainersdockeroci
    在 GitHub 上查看↗3,641
  • nestybox/sysboxnestybox 的头像

    nestybox/sysbox

    3,458在 GitHub 上查看↗

    Sysbox is an OCI-compliant container runtime that provides virtual-machine-level isolation for containers without requiring hardware virtualization. It achieves this by mapping the container's root user to an unprivileged host user ID range, virtualizing the /proc and /sys filesystems, and applying seccomp-BPF system call filtering, all while using cgroup v2 for resource partitioning. The runtime enables running system-level software such as systemd, Docker, and Kubernetes inside unprivileged containers without requiring special images or privileged mode. It supports nested namespace stacking

    Injects custom logic at container lifecycle events to configure namespaces, cgroups, and mounts.

    Shellcontainer-runtime-securitycontainer-runtimescontainers
    在 GitHub 上查看↗3,458
  1. Home
  2. Software Engineering & Architecture
  3. Dependency Injection Containers
  4. Container Runtime Hooks

探索子标签

  • Lifecycle Hook Name EnumerationsLists and validates the recognized names of supported container lifecycle hooks. **Distinct from Container Runtime Hooks:** Distinct from Container Runtime Hooks: focuses specifically on enumerating recognized hook names in specifications rather than executing driver injections.
  • PostStop Hook Failure HandlingsTerminates a container properly even when its PostStop hook fails. **Distinct from Container Runtime Hooks:** Distinct from Container Runtime Hooks: focuses on handling failures of PostStop hooks specifically, not general pre-start hook injection.