containerd 常用命令
时间: 2023-11-26 08:44:34 浏览: 232
containerd提供了ctr命令行工具管理容器,但功能比较简单,所以一般会用crictl工具检查和调试容器
containerd 是一个开源的容器运行时,它提供了一组 API,用于管理容器的生命周期、镜像、网络等。以下是 containerd 常用命令:
1. `ctr images list`:列出所有镜像
2. `ctr images pull <image>`:拉取指定镜像
3. `ctr images remove <image>`:删除指定镜像
4. `ctr containers list`:列出所有容器
5. `ctr container start <container>`:启动指定容器
6. `ctr container stop <container>`:停止指定容器
7. `ctr container delete <container>`:删除指定容器
阅读全文