# containerd **Repository Path**: eeenet/containerd ## Basic Information - **Project Name**: containerd - **Description**: No description available - **Primary Language**: Shell - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-12-24 - **Last Updated**: 2025-12-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # containerd #### 介绍 该项目是一个独立的containerd二进制安装包,是配合https://gitee.com/eeenet/k8s-install 进行安装的,是将containerd依赖的组件整合到一起: https://github.com/kubernetes-sigs/cri-tools/releases https://github.com/containerd/containerd/releases https://github.com/opencontainers/runc/releases https://github.com/containernetworking/plugins/releases #### 软件架构 1. 目录结构: ``` ├── bin │   ├── containerd │   ├── containerd-shim-runc-v2 │   ├── containerd-stress │   └── ctr ├── etc │   ├── containerd │   │   └── config.toml │   ├── crictl.yaml │   └── systemd │   └── system │   └── containerd.service ├── LICENSE ├── opt │   └── cni │   └── bin │   ├── bandwidth │   ├── bridge │   ├── dhcp │   ├── dummy │   ├── firewall │   ├── host-device │   ├── host-local │   ├── ipvlan │   ├── LICENSE │   ├── loopback │   ├── macvlan │   ├── portmap │   ├── ptp │   ├── README.md │   ├── sbr │   ├── static │   ├── tap │   ├── tuning │   ├── vlan │   └── vrf └── usr └── local ├── bin │   ├── containerd │   ├── containerd-shim-runc-v2 │   ├── containerd-stress │   ├── crictl │   └── ctr └── sbin └── runc ``` #### 安装教程 ``` git clone https://gitee.com/eeenet/containerd.git cp -rfv containerd/* / systemctl daemon-reload systemctl enable containerd systemctl start containerd ```