公司目前的软件研发架构还不是很正规,一些常用的软件研发架构中的软件是没有的。比如bug管理工具。但是这个东西,发现要安装起来也是比较麻烦的,因为有很多依赖。而对于这些依赖熟悉的话,往往会浪费你很多时间。 然后我就想到了用docker。这货我虽然关注了很久,但是却始终没有动手实践。 今天动手实践了一下。
[ CentOS 6.7安装Docker](http://blog.csdn.net/noob_f/article/details/52548699)
现在安装docker已经不需要那么麻烦了,比如要更新系统内核,等。
实践环境
[root@localhost ~]# cat /etc/issueCentOS release 6.7 (Final)Kernel \r on an \m[root@localhost ~]# uname -aLinux localhost.localdomain 2.6.32-573.el6.x86_64 #1 SMP Thu Jul 23 15:44:03 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux
安装
[root@localhost ~]# yum install -y epel-release[root@localhost ~]# yum install -y docker-io
启动
[root@localhost ~]# /etc/init.d/docker startStarting cgconfig service: [确定]Starting docker: [确定][root@localhost ~]# ps aux |grep dockerroot 3176 1.7 0.6 222296 12268 pts/0 Sl 08:56 0:00 /usr/bin/docker -droot 3308 0.0 0.0 103320 912 pts/0 S+ 08:56 0:00 grep docker
最近因为想上spring cloud,微服务要成为彻底的微服务需要采用容器技术,其中docker为首选。