一、docker镜像是什么?
Docker的镜像概念类似于虚拟机里的镜像,是一个只读的模板,一个独立的文件系统,包括运行容器所需的数据,可以用来创建新的容器。java开发可以理解为类(Class)。
Docker的镜像实际上由一层一层的文件系统组成,这种层级的文件系统被称为UnionFS
。镜像可以基于Dockerfile
构建,Dockerfile是一个描述文件,里面包含若干条命令,每条命令都会对基础文件系统创建新的层次结构。
二、docker镜像如何获取?
我们可以从官网仓库(dockerhub)获取镜像,当然我们也可以搭建自己的镜像仓库,然后从中获取镜像。
三、docker镜像常见操作
1.镜像查询
命令: docker search image_name
举例: docker search nginx
如何从私有库查询镜像?
使用curl -XGEThttp://192.168.1.8:5000/v2/nginx。其中192.168.1.8:5000为仓库地址,nginx为镜像名称。
使用curl -XGEThttp://192.168.1.8:5000/v2/nginx/tags/list获取某个镜像的所有标签。
2.从仓库获取镜像
命令:docker pull image_address[:TAG]
image_address:为镜像地址全路径,可只写镜像名称,那么默认从dockerhub获取镜像
TAG:可理解为镜像的版本号,不写,则默认为latest,即最新镜像。
举例:docker pull nginx <==> docker pull registry.hub.docker.com/nginx:latest
3.查看镜像信息
3.1列出当前docker下所有镜像
命令: docker images 或 docker images ls
3.2使用tag命令为镜像添加自定义标签
命令:docker tag nginx:latest mynginx:latest
nginx:latest为原来镜像,mynginx:latest为你自定的。
3.3使用inspect查看某个镜像详细信息
命令: docker inspect nginx:latest
除了镜像的基本信息外,我们还可以看到该镜像的一些配置信息(参见Config),如运行在那个类型的操作系统,以及存储位置。这里因为内容太多,不贴截图,具体可自行使用查看。
3.4使用history查看镜像历史
命令: docker history nginx
3.4.删除清理镜像
(1)使用标签删除镜像
命令:docker rmi mynginx:latest
-f : 强制删除,不管是否该镜像有容器运行。
-no-prune : 不要清理带父标签的父镜像
(2)使用镜像Id删除
命令: docker rmi fce289e99eb9
(3)清理镜像
命令:docker image prune
-a , -all : 删除所有无用镜像
-f : 强制删除
4.创建镜像
4.1基于容器创建
主要步骤与命令如下,#为说明语句
#查看已有镜像 docker images REPOSITORY TAG IMAGE ID CREATED SIZE nginx latest 540a289bab6c 2 days ago 126MB ubuntu latest cf0f3ca922e0 6 days ago 64.2MB redis latest de25a81a5a0b 8 days ago 98.2MB rancher/server stable 4caa4fca1acd 10 days ago 1.08GB #使用镜像(ubuntu)创建容器,并运行容器的bash命令。 docker run -it ubuntu:latest bash #查看并创建myfile文件,注意这里root@后面的数字就是容器id root@261936bc9763:/# ls bin boot dev etc home lib lib64 media mnt opt proc root run sbin srv sys tmp usr var root@261936bc9763:/# touch myfile root@261936bc9763:/# ls bin boot dev etc home lib lib64 media mnt myfile opt proc root run sbin srv sys tmp usr var #退出容器 root@261936bc9763:/# exit exit #使用容器创建镜像 docker commit -m 'create myfile for my ubuntu' -a 'SevenSun' 261936bc9763 my_ubuntu:latest sha256:ac0d9f1760199ae9886807b17dad03063fce832a48a5a5989e55d95cb7affeb5 #再次查看镜像,可以发现已有我们自己创建的镜像。 docker images REPOSITORY TAG IMAGE ID CREATED SIZE my_ubuntu latest ac0d9f176019 17 seconds ago 64.2MB nginx latest 540a289bab6c 2 days ago 126MB ubuntu latest cf0f3ca922e0 6 days ago 64.2MB redis latest de25a81a5a0b 8 days ago 98.2MB rancher/server stable 4caa4fca1acd 10 days ago 1.08GB #使用我们自定义的镜像创建容器,并运行bash命令。可以找到我们刚创建的myfile文件 docker run -it my_ubuntu:latest bash root@890872cb6c65:/# ls bin boot dev etc home lib lib64 media mnt myfile opt proc root run sbin srv sys tmp usr var |
4.2基于本地模板创建
命令很简单,但用的不是很习惯。
wget http://download.openvz.org/template/precreated/centos-6-x86-minimal.tar.gz cat centos-6-x86-minimal.tar.gz|docker import - centos-6-x86 //import - (+自定义的名字) |
4.3基于Dockefile创建
此种方式最为常见,比如我们完成应用开发后,想要创建docker应用,那么可选此种方式。步骤如下:
1.创建好Dockerfile文件,注意名称为Dockerfile,没有后缀。
2.编写Dockerfile文件,如环境依赖。
3.进入Dockerfile所在目录,运行命令 docker build -t mytomcat . (最后.表示使用当前目录下的Dockerfile mytomcat表示镜像名称)
具体详情请参看Dockerfile编写。
4.4存入、存储、上传镜像
(1)使用save实现存入.
docker save -o my-hello-world.tar hello-world:latest
my-hello-world.tar为导出文件名,这里没有指定路径则为当前路径。
(2)使用load实现镜像导入
docker load -i my-hello-world.tar
导入后的元信息和原镜像一致。
(3)上传镜像到仓库
docker push hello-world:latest
默认上传到dockerhub仓库,如果是别的仓库,则为localhost:5000/hello-world:latest