image-management
Installation
SKILL.md
Docker 镜像管理
概述
镜像构建、多阶段构建、镜像优化等技能。
镜像操作
查看镜像
# 列出镜像
docker images
docker images -a # 包含中间层
docker images --format "table {{.Repository}}\t{{.Tag}}\t{{.Size}}"
# 镜像详情
docker inspect image_name
docker history image_name # 构建历史
Related skills