docker的常用命令
docker的常用命令启动dockersudo systemctl start docker
帮助命令docker version #显示docker的版本信息docker info #显示docker的系统信息,包括镜像和容器信息的数量docker 命令 --help #帮助命令
docker官方帮助文档
镜像命令[root@localhost ~]# docker images#查看所以本地的主机上的镜像REPOSITORY TAG IMAGE ID CREATED SIZEhello-world latest feb5d9fea6a5 21 months ago 13.3kB#解释REPOSITORY 镜像的仓库源TAG 镜像的标签IMAGE ID 镜像的IDCREATD 镜像的创建时间SIZE 镜像的大小#可选项(可用--help看) -a, --all 列出所有镜像 --digests S ...