Docker
文章平均质量分 80
gaojingyuan
这个作者很懒,什么都没留下…
展开
-
4.Docker-蜂群(Swarms)
A swarm is a group of machines that are running Docker and joined into a cluster. After that has happened, you continue to run the Docker commands you’re used to, but now they are executed on a cluste原创 2018-01-04 16:04:05 · 379 阅读 · 0 评论 -
1.Docker-简介
百度百科:Docker 是一个开源的应用容器引擎,让开发者可以打包他们的应用以及依赖包到一个可移植的容器中,然后发布到任何流行的Linux机器上,也可以实现虚拟化。容器是完全使用沙箱机制,相互之间不会有任何接口。优势:Docker技术可以以一种简单的方式,在服务压力增大时,快速加入软、硬件分担服务压力。1.官网https://www.docker.com/ 文档https://原创 2018-01-04 15:37:54 · 236 阅读 · 0 评论 -
5.Docker-堆(Stack)
A stack is a group of interrelated services that share dependencies, and can be orchestrated and scaled together. A single stack is capable of defining and coordinating the functionality of an entire原创 2018-01-04 16:12:59 · 422 阅读 · 0 评论 -
2.Docker-容器(Containers)
In the past, if you were to start writing a Python app, your first order of business was to install a Python runtime onto your machine. But, that creates a situation where the environment on your mach原创 2018-01-04 15:51:58 · 726 阅读 · 0 评论 -
3.Docker-服务(Services)
In a distributed application, different pieces of the app are called “services.” For example, if you imagine a video sharing site, it probably includes a service for storing application data in a data原创 2018-01-04 16:02:40 · 600 阅读 · 0 评论 -
6.Docker-部署
在文章4蜂群中,通过docker-machine env命令操作docker-machine十分方便,当我们在真实环境中部署时,也需要实现这种效果。Docker可以对接多种云服务提供商,目前我用阿里云ECS主机较多,而Docker目前不支持,所以尝试使用Docker Cloud Agent。1.docker可以配合多种云服务提供商Amazon Web Services setup guid原创 2018-01-04 17:49:27 · 565 阅读 · 0 评论 -
7.Docker-管理应用数据
1.container可以保存数据,但是有以下缺点: a.数据不能持久化,只有container运行时这些数据才存在,并且其他进程很难获取container内的数据。 b.container读写与它正在运行的机器紧密耦合,很难移动数据。 c.container读写需要存储驱动来管理文件系统,存储驱动通过Linux内核提供联合文件系统。这层额外的抽象比直接读写主机文件系统耗费性能。2.为了原创 2018-01-04 17:50:38 · 188 阅读 · 0 评论