Docker中容器和图像的区别是什么?在Docker入门教程中,这两个术语都被使用了,但我不明白其中的区别。
谁能给我点灯?
Docker中容器和图像的区别是什么?在Docker入门教程中,这两个术语都被使用了,但我不明白其中的区别。
谁能给我点灯?
当前回答
图片是用你的手机拍的照片。 容器就是电话。
其他回答
图片[像vm]
用于创建容器的只读模板 由您或其他Docker用户构建 存储在Docker Hub或本地注册表中
容器[像运转的机器]
隔离应用平台 包含运行应用程序所需的所有内容 基于图像
The official difference is that the container is the last layer which is writable whereas the layers below are only readable and they belong to your image. The intuitive difference is that the docker instance is the instance virtualized by your docker daemon and the running your image, it operates within an isolated section of your kernel (this process is hidden from you). The image however is static, it doesn't run, it is just a pile of layers (static files). If we would relate this paradigm to object-oriented programming, the image is your class definition, whereas your docker instance is your class spawned object that resides in memory.
我写了一个教程来加强你的docker知识直觉:
http://javagoogleappspot.blogspot.com/2018/07/docker-basics.html
容器是基于图像的。需要将图像传递给Dockers run命令。
例子:
BusyBox映像
http://i.stack.imgur.com/eK9dC.png
这里我们指定一个名为busybox的映像。Docker在本地没有这个映像,而是从公共注册表中获取它。
注册表是Docker镜像的目录,Docker客户端可以与之通信并从中下载镜像。一旦图像被拉出,Docker启动一个容器并执行echo hello world命令。
码头工人图片: 它包含一个关于如何构建和运行容器的命令和指令列表。因此,基本上Images包含启动容器(也称为blueprint)所需的所有数据和元数据。我们不能在没有指定图像的情况下将一个容器送入午餐。
$docker images centos
列出所有可用的centos版本。
码头工人容器: 容器是图像的午餐,因此我们可以说容器是图像的运行实例。 Container是一个运行时构造,不像Images是构建时构造。
图片是用你的手机拍的照片。 容器就是电话。