前言Docker旨在提供一种应用程序的自动化部署解决方案,在 Linux 系统上迅速创建一个容器(轻量级虚拟机)并部署和运行应用程序,并通过配置文件可以轻松实现应用程序的自动化安装、部署和升级,非常方便。因为使用了容器,所以可以很方便的把生产环境和开发环境分开,互不影响,这是 docker 最普遍的...
分类:
编程语言 时间:
2014-11-17 06:51:59
阅读次数:
356
Dockerfile里有 CMD 与 ENTRYPOINT 两个功能咋看起来很相似的指令,开始的时候觉得两个互用没什么所谓,但其实并非如此:CMD指令:The main purpose of a CMD is to provide defaults for an executing containe...
分类:
其他好文 时间:
2014-11-16 21:21:15
阅读次数:
304
看C++ STL一个月了,小结下这个阶段的学习所得;
容器是以class template完成;内存管理师由memory pool完成;算法是由function template完成;仿函数(函数对象)是一种将operation ( )重载了的class template;迭代器是泛型指针,也是种智能指针,将operator++、operator * 等指针习惯行为重载的class t...
分类:
其他好文 时间:
2014-11-16 16:00:02
阅读次数:
209
#define EPERM 1 /* Operation not permitted */ #define ENOENT 2 /* No such file or directory */ #define ESRCH 3 /* No such process */ #define EINTR 4 /* Interrupted system call */ #define EIO 5 /* I...
分类:
系统相关 时间:
2014-11-15 18:59:18
阅读次数:
310
Docker是一个开源的应用容器引擎,主要利用linux内核namespace实现沙盒隔离,用cgroup实现资源限制。
Docker 支持三种不同的镜像层次存储的drivers: aufs、devicemapper、btrfs ;
Aufs:
分类:
其他好文 时间:
2014-11-15 11:17:53
阅读次数:
254
Adding a data volumeYou can add a data volume to a container using the-vflag with thedocker runcommand. You can use the-vmultiple times in a singledoc...
分类:
其他好文 时间:
2014-11-14 13:54:41
阅读次数:
145
基于 Docker 的开源 PaaS 系统 Deis 1.0 正式版发布了,这是 Deis 的首个稳定版本,你现在可以在生产环境中使用该系统,这是 Deis 首个基于 Docker 构建的产品级别的 PaaS 系统。Deis 1.0 提供了稳定的 API、丰富的功能特性以及可靠的组件架构。包括:平台...
分类:
其他好文 时间:
2014-11-14 10:35:18
阅读次数:
154
Description
You have N integers, A1, A2, ... , AN. You need to deal with two kinds of operations. One type of operation is to add some given number to each number in a given interval. The other is
...
分类:
其他好文 时间:
2014-11-14 01:41:58
阅读次数:
245
Intent可以说是Android的灵魂,程序跳转和传递数据的时候基本上就是靠Intent了。Intent在Android应用中是相当重要的,理解Intent对应用编程很有帮助。在Android的官方API文档里边对Intent是这样定义的:An Intent is an abstract description of an operation to be performed。一个Intent就是...
分类:
移动开发 时间:
2014-11-13 11:00:32
阅读次数:
246
作者 Chris
Swan ,译者 张晓鹏
Docker – 迄今为止的故事
Docker是一种Linux容器工具集,它是为“构建(build)、交付(ship)和运行(运行)”分布式应用而设计的。作为DotCloud公司的开源项目,其首发版本的时间是2013年的3月份。该项目很快就受到欢迎,这也使得DotCloud公司将其品牌改为Docker(并最终将其原有的P...
分类:
其他好文 时间:
2014-11-13 09:26:06
阅读次数:
381