有网方式
搜索镜像
docker search 关键字 //用来搜索远端官方仓库中的共享镜像
获取镜像
docker pull 名称
离线方式
把镜像centos7,拖到虚拟机中
[root@Docker ~]# ls
anaconda-ks.cfg centos7 docker docker-18.06.1-ce.tgz
[root@Docker ~]#
[root@Docker ~]# docker load < centos7 #load命令加载成镜像
f972d139738d: Loading layer 208.8MB/208.8MB
Loaded image: centos:latest
1) 查看镜像信息
docker images
[root@localhost ~]# docker images #查看本地所有镜像
REPOSITORY TAG IMAGE ID CREATED SIZE
centos latest 75835a67d134 2 years ago 200MB
注解:
REPOSITORY:镜像属于的仓库(名称)
TAG:镜像的标签信息,标记同一仓库中的不同镜像(默认为 latest)
IMAGE ID:镜像的唯一 ID号,唯一标识了该镜像。
CREATED:镜像创建时间。
SIZE:镜像大小。
还可以根据镜像的唯一标识 ID 号,获取镜像详细信息
[root@localhost ~]# docker inspect 75835a67d134