摘要: # 使用 docker kill 强制终止容器 docker kill etcd1 #停止及删除所有容器 docker stop $(docker ps -aq) docker rm $(docker ps -aq) #停止及删除所有镜像 docker rmi $(docker images -q) 阅读全文
posted @ 2025-12-25 13:53 Peter.Jones 阅读(47) 评论(0) 推荐(0)
摘要: containerd 是容器运行时的核心组件,是现代容器技术的基石。 1. 什么是 containerd? 简化的理解: 传统:Docker Daemon → 直接管理容器 现代:Docker Daemon → containerd → runc → 容器 详细架构: 用户/CLI → Docker 阅读全文
posted @ 2025-12-25 11:51 Peter.Jones 阅读(25) 评论(0) 推荐(0)
摘要: [root@node02 ~]# systemctl stop docker Warning: Stopping docker.service, but it can still be activated by: docker.socket [root@node02 ~]# systemctl st 阅读全文
posted @ 2025-12-25 11:02 Peter.Jones 阅读(8) 评论(0) 推荐(0)