Home > Database > Mysql Tutorial > body text

Docker版本升级(从1.2.0升级到1.3.0)

WBOY
Release: 2016-06-07 15:20:23
Original
1652 people have browsed it

近期Docker1.3.0已经发布,发布了不少新特性。但是yumupdate并没有提供最新的包,于是想到编译Docker源码,但下下来以后 需要在Ubuntu14.04的imges下编译,瞬间头大,Ubuntu的images没有,pull下来又很慢。我用的是CenterOS,要升级也只有Ubuntu下的指导文档

       近期Docker1.3.0已经发布,发布了不少新特性。但是yum update并没有提供最新的包,于是想到编译Docker源码,但下下来以后

需要在Ubuntu14.04的imges下编译,瞬间头大,Ubuntu的images没有,pull下来又很慢。我用的是CenterOS,要升级也只有Ubuntu下的指导文档,对我完全没有用。于是继续,终于的官网上找到,可以通过这链接过去。下面再简单说一下。

       Docker的在CenterOS下的安装很简单:

     # yum install docker-io
Copy after login
          Dokcer v1.3.0还需要下面的依赖包:

     # yum install -y lxc curl xz-utils git mercurial
Copy after login
      然后直接下载Docker最新的二进制执行文件

<code></code><pre class="brush:php;toolbar:false">    # wget https://get.docker.com/builds/Linux/x86_64/docker-latest -O docker
    # chmod +x docker
Copy after login
Copy after login
Copy after login
Copy after login
Copy after login
      记得要把docker文件放到/usr/bin下,然后重启 service docker restart 就可以使用了。


      以后更高级版本的升级也可以用此方法。

      

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template