Docker和Container是啥?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Docker和Container是啥?相关的知识,希望对你有一定的参考价值。

参考技术A Docker
是一个开源的应用容器引擎,让开发者可以打包他们的应用以及依赖包到一个可移植的容器中,然后发布到任何流行的
Linux
机器上,也可以实现虚拟化。
ontainer
是容器的意思。

7Docker Container

7.1 什么是Container

  • 通过image创建(copy)
  • 在Image layer之上建立一个Container layer(可读写)
  • 类比面向对象:类和实例
  • Image负责APP的存储和分发,Container负责运行APP

技术分享图片

7.2 通过Image创建Container

??命令:

docker run
docker run hello-world

Hello from Docker!
This message shows that your installation appears to be working correctly.

To generate this message, Docker took the following steps:
 1. The Docker client contacted the Docker daemon.
 2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
    (amd64)
 3. The Docker daemon created a new container from that image which runs the
    executable that produces the output you are currently reading.
 4. The Docker daemon streamed that output to the Docker client, which sent it
    to your terminal.

To try something more ambitious, you can run an Ubuntu container with:
 $ docker run -it ubuntu bash

Share images, automate workflows, and more with a free Docker ID:
 https://hub.docker.com/

For more examples and ideas, visit:
 https://docs.docker.com/engine/userguide/

docker run启动容器的背后

??docker run启动容器时,docker在后台一共做了下面这些事:

  1. 检查本地是否存在指定的镜像,不存在就从共有仓库下载;
  2. 利用镜像创建一个容器,并启动该容器;
  3. 分配一个文件系统给容器,并在只读的镜像层外面挂载一层可读写层;
  4. 从宿主主机配置的网桥接口中桥接一个虚拟接口到容器中;
  5. 从网桥的地址池配置一个IP地址给容器;
  6. 执行用户指定的应用程序;
  7. 执行完毕后,容器被终止。

以上是关于Docker和Container是啥?的主要内容,如果未能解决你的问题,请参考以下文章

我的支付总结 系统设计

我的支付总结 常见问题

Docker+美食+美女+按摩,尽在灵力四射——Docker品玩会

Docker初试

java的Container是啥类?

docker--删除container和image