ubuntu 14.04 的内核是 3.13 ,所以内核不用升级。安装步骤如下:# apt-get update
# apt-get install apt-transport-https
# apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 36A1D7869245C8950F966E92D8576A8BA88D2...
分类:
系统相关 时间:
2014-11-06 10:58:27
阅读次数:
326
本章将介绍在阿里云的 Centos6.5 模板上安装 Docker 以及在 Ubuntu 14.04 模板上安装 Docker 的过程Centos 6.5 模板上使用Docker首先,通过 ssh 登陆阿里云的服务器,查看系统版本号以及内核版本。Welcome to aliyun Elastic Compute Service!
# lsb_release -a
LSB Version: :...
分类:
其他好文 时间:
2014-11-05 23:17:50
阅读次数:
215
我们都知道同一台主机中的docker容器可以相互访问,那么不同主机中的docker容器间是否可以相互访问呢?答案是可以的,解决思路是在主机中把另外主机上docker容器的网段加入到路由表中。现有主机A 192.168.124.51,主机B 192.168.124.55,具体步骤如下:修改一台主机do...
分类:
其他好文 时间:
2014-11-05 19:36:17
阅读次数:
557
Kubernetes是Google开源的容器集群管理系统。它构建于docker技术之上,为容器化的应用提供资源调度、部署运行、服务发现、扩容缩容等整一套功能,本质上可看作是基于容器技术的mini-PaaS平台。本文旨在梳理Kubernetes的架构、概念及基本工作流,并且通过运行一个简单的示例应用来...
分类:
Web程序 时间:
2014-11-05 19:20:53
阅读次数:
271
docker启动时默认使用172.17.x.x作为容器的ip地址,可以通过以下方法自定义该网段:sudo service docker stop通过命令route -n查看docker0是否存在,若存在需先删除,sudo ip link del docker0sudo docker --bip="1...
分类:
其他好文 时间:
2014-11-05 19:18:30
阅读次数:
3633
今天,daimajia推荐使用docker,其实一直都听过docker,但没用过,今天参考几篇文档把docker搞定了。果然起的速度比一般虚拟机快
我的电脑是ubuntu14.04 安装的话用包源进行安装
$ sudo apt-get install apt-transport-https
$ sudo apt-key adv --keyserver hkp://keyserver.u...
分类:
系统相关 时间:
2014-11-04 19:46:42
阅读次数:
733
enough----------------------------------------------------------------------------------Working with Containers-In thelast section of the Docker User ...
分类:
其他好文 时间:
2014-11-04 18:59:22
阅读次数:
186
Working with Docker Images##orignal is always the bestIn theintroductionwe've discovered that Docker images are the basis of containers. In thepreviou...
分类:
其他好文 时间:
2014-11-04 17:17:43
阅读次数:
292
--------------------------------------------------------------------------original url http://tech.uc.cn/?p=2726最近接触PAAS相关的知识,在研发过程中开始使用Docker搭建了自己完整的...
分类:
其他好文 时间:
2014-11-04 12:31:26
阅读次数:
215
网上的方法都转载兼扯蛋。。。一步一个坑。。官网的教程顺序也不对。。坑1. ps:这个命令下载的不是docker。。。这个:sudo apt-get install docker下的是啥我也不知道,于是卸载掉:$ sudo apt-get remove docker && sudo apt-get a...
分类:
其他好文 时间:
2014-11-03 19:19:09
阅读次数:
254