💿镜像管理12
📦容器操作18
🌐网络管理7
💾数据卷5
🎼Docker Compose12
⚙️系统管理7
🐝Swarm 集群12
docker images

列出本地镜像

示例:docker images
docker pull

拉取镜像

示例:docker pull nginx:latest
docker push

推送镜像

示例:docker push user/image:tag
docker rmi

删除镜像

示例:docker rmi image_id
docker tag

标记镜像

示例:docker tag img user/img:v1
docker build

构建镜像

示例:docker build -t name .
docker save

导出镜像

示例:docker save -o img.tar img
docker load

导入镜像

示例:docker load -i img.tar
docker history

查看镜像历史

示例:docker history img
docker inspect

查看镜像详情

示例:docker inspect img
docker prune

清理无用镜像

示例:docker image prune -a
docker search

搜索镜像

示例:docker search nginx