一、命令图谱

二、基本命令
docker version #显示版本信息
docker info #显示系统信息,包括镜像、容器数量
docker 命令 --help #帮助
三、镜像命令
3.1 docker images
查看本地主机上的镜像
docker images [OPTIONS] [REPOSITORY[:TAG]]
选项:
-a 列出所有镜像
-q 只打印镜像的ID
docker images [REPOSITORY[:TAG]] #查看指定镜像的信息
[root@localhost ~]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
docker.io/redis latest 739b59b96069 2 months ago 105 MB