各种版本docker下载的中国开源地址
最近在群里听说Docker很火,于是自己抱着试试的态度,想玩玩,可是遇到了一些问题,记录下来,方便备忘,也方便防止大家被坑。
我的虚拟机装的是centos 6.5,百度了好多教程,丫的,都不解释,就一句命令:yum install docker-io,这句话是用源安装docker,可是源一般是国外源,用这个命令因为GFW被墙,根本安装不了。
- [root@localhost ~]# yum install docker-io
- Loaded plugins: fastestmirror, refresh-packagekit, security
- Loading mirror speeds from cached hostfile
- * base: mirrors.skyshe.cn
- * extras: mirrors.skyshe.cn
- * updates: centosx4.centos.org
- Setting up Install Process
- No package docker-io available.
- Error: Nothing to do
- <pre name="code" class="plain">[root@localhost ~]# yum install docker
- Loaded plugins: fastestmirror, refresh-packagekit, security
- Loading mirror speeds from cached hostfile
- * base: mirrors.163.com
- * extras: mirrors.skyshe.cn
- * updates: centosx4.centos.org
- Setting up Install Process
- No package docker available.
- Error: Nothing to do
- [root@localhost ~]# yum install docker-io
- Loaded plugins: fastestmirror, refresh-packagekit, security
- Loading mirror speeds from cached hostfile
- * base: mirrors.skyshe.cn
- * extras: mirrors.skyshe.cn
- * updates: centosx4.centos.org
- Setting up Install Process
- No package docker-io available.
- Error: Nothing to do
- <pre name="code" class="plain">[root@localhost ~]# yum install docker
- Loaded plugins: fastestmirror, refresh-packagekit, security
- Loading mirror speeds from cached hostfile
- * base: mirrors.163.com
- * extras: mirrors.skyshe.cn
- * updates: centosx4.centos.org
- Setting up Install Process
- No package docker available.
- Error: Nothing to do
总共尝试了好几次,所谓的镜像很不稳定,不是没有找到,就是找到了,下了一半就中途断了,哎,网上总是说一句话搞定,可是一句话搞定要有前提呀,于是乎,我看了开源中国的docker更新记录
Ubuntu/Debian: curl -sSL https://get.docker.com | sh
Linux 64bit binary: https://get.docker.com/builds/Linux/x86_64/docker-1.7.1
Darwin/OSX 64bit client binary: https://get.docker.com/builds/Darwin/x86_64/docker-1.7.1
Darwin/OSX 32bit client binary: https://get.docker.com/builds/Darwin/i386/docker-1.7.1
Linux 64bit tgz: https://get.docker.com/builds/Linux/x86_64/docker-1.7.1.tgz
Windows 64bit client binary: https://get.docker.com/builds/Windows/x86_64/docker-1.7.1.exe
Windows 32bit client binary: https://get.docker.com/builds/Windows/i386/docker-1.7.1.exe
Centos 6/RHEL 6: https://get.docker.com/rpm/1.7.1/centos-6/RPMS/x86_64/docker-engine-1.7.1-1.el6.x86_64.rpm
Centos 7/RHEL 7: https://get.docker.com/rpm/1.7.1/centos-7/RPMS/x86_64/docker-engine-1.7.1-1.el7.centos.x86_64.rpm
Fedora 20: https://get.docker.com/rpm/1.7.1/fedora-20/RPMS/x86_64/docker-engine-1.7.1-1.fc20.x86_64.rpm
Fedora 21: https://get.docker.com/rpm/1.7.1/fedora-21/RPMS/x86_64/docker-engine-1.7.1-1.fc21.x86_64.rpm
Fedora 22: https://get.docker.com/rpm/1.7.1/fedora-22/RPMS/x86_64/docker-engine-1.7.1-1.fc22.x86_64.rpm
啥也不说成功了,
- [root@localhost ~]# yum install https://get.docker.com/rpm/1.7.1/centos-6/RPMS/x86_64/docker-engine-1.7.1-1.el6.x86_64.rpm
- Loaded plugins: fastestmirror, refresh-packagekit, security
- Loading mirror speeds from cached hostfile
- * base: mirrors.163.com
- * extras: mirrors.skyshe.cn
- * updates: centosx4.centos.org
- Setting up Install Process
- docker-engine-1.7.1-1.el6.x86_64.rpm | 4.5 MB 00:07
- Examining /var/tmp/yum-root-YSfgzS/docker-engine-1.7.1-1.el6.x86_64.rpm: docker-engine-1.7.1-1.el6.x86_64
- Marking /var/tmp/yum-root-YSfgzS/docker-engine-1.7.1-1.el6.x86_64.rpm to be installed
- Resolving Dependencies
- --> Running transaction check
- ---> Package docker-engine.x86_64 0:1.7.1-1.el6 will be installed
- --> Processing Dependency: libcgroup for package: docker-engine-1.7.1-1.el6.x86_64
- --> Running transaction check
- ---> Package libcgroup.x86_64 0:0.40.rc1-16.el6 will be installed
- --> Finished Dependency Resolution
- Dependencies Resolved
- ============================================================================================================================================================
- Package Arch Version Repository Size
- ============================================================================================================================================================
- Installing:
- docker-engine x86_64 1.7.1-1.el6 /docker-engine-1.7.1-1.el6.x86_64 19 M
- Installing for dependencies:
- libcgroup x86_64 0.40.rc1-16.el6 base 129 k
- Transaction Summary
- ============================================================================================================================================================
- Install 2 Package(s)
- Total size: 19 M
- Total download size: 129 k
- Installed size: 20 M
- Is this ok [y/N]: y
- Downloading Packages:
- libcgroup-0.40.rc1-16.el6.x86_64.rpm | 129 kB 00:00
- Running rpm_check_debug
- Running Transaction Test
- Transaction Test Succeeded
- Running Transaction
- Installing : libcgroup-0.40.rc1-16.el6.x86_64 1/2
- Installing : docker-engine-1.7.1-1.el6.x86_64 2/2
- Verifying : libcgroup-0.40.rc1-16.el6.x86_64 1/2
- Verifying : docker-engine-1.7.1-1.el6.x86_64 2/2
- Installed:
- docker-engine.x86_64 0:1.7.1-1.el6
- Dependency Installed:
- libcgroup.x86_64 0:0.40.rc1-16.el6
- Complete!
- [root@localhost ~]# service docker start
- Starting cgconfig service: [ OK ]
- Starting docker: [ OK ]
- [root@localhost ~]# yum install https://get.docker.com/rpm/1.7.1/centos-6/RPMS/x86_64/docker-engine-1.7.1-1.el6.x86_64.rpm
- Loaded plugins: fastestmirror, refresh-packagekit, security
- Loading mirror speeds from cached hostfile
- * base: mirrors.163.com
- * extras: mirrors.skyshe.cn
- * updates: centosx4.centos.org
- Setting up Install Process
- docker-engine-1.7.1-1.el6.x86_64.rpm | 4.5 MB 00:07
- Examining /var/tmp/yum-root-YSfgzS/docker-engine-1.7.1-1.el6.x86_64.rpm: docker-engine-1.7.1-1.el6.x86_64
- Marking /var/tmp/yum-root-YSfgzS/docker-engine-1.7.1-1.el6.x86_64.rpm to be installed
- Resolving Dependencies
- --> Running transaction check
- ---> Package docker-engine.x86_64 0:1.7.1-1.el6 will be installed
- --> Processing Dependency: libcgroup for package: docker-engine-1.7.1-1.el6.x86_64
- --> Running transaction check
- ---> Package libcgroup.x86_64 0:0.40.rc1-16.el6 will be installed
- --> Finished Dependency Resolution
- Dependencies Resolved
- ============================================================================================================================================================
- Package Arch Version Repository Size
- ============================================================================================================================================================
- Installing:
- docker-engine x86_64 1.7.1-1.el6 /docker-engine-1.7.1-1.el6.x86_64 19 M
- Installing for dependencies:
- libcgroup x86_64 0.40.rc1-16.el6 base 129 k
- Transaction Summary
- ============================================================================================================================================================
- Install 2 Package(s)
- Total size: 19 M
- Total download size: 129 k
- Installed size: 20 M
- Is this ok [y/N]: y
- Downloading Packages:
- libcgroup-0.40.rc1-16.el6.x86_64.rpm | 129 kB 00:00
- Running rpm_check_debug
- Running Transaction Test
- Transaction Test Succeeded
- Running Transaction
- Installing : libcgroup-0.40.rc1-16.el6.x86_64 1/2
- Installing : docker-engine-1.7.1-1.el6.x86_64 2/2
- Verifying : libcgroup-0.40.rc1-16.el6.x86_64 1/2
- Verifying : docker-engine-1.7.1-1.el6.x86_64 2/2
- Installed:
- docker-engine.x86_64 0:1.7.1-1.el6
- Dependency Installed:
- libcgroup.x86_64 0:0.40.rc1-16.el6
- Complete!
- [root@localhost ~]# service docker start
- Starting cgconfig service: [ OK ]
- Starting docker: [ OK ]
各种版本docker下载的中国开源地址的更多相关文章
- JavaCC首页、文档和下载 - 语法分析生成器 - 开源中国社区
JavaCC首页.文档和下载 - 语法分析生成器 - 开源中国社区
- Google Chrome浏览器各版本直接下载地址
Google Chrome浏览器各版本直接下载地址 2012.04.12珍藏软件 10161 Views 0 Comments 现在所用的主浏览器Google Chrome,在其官方主页上默认只 ...
- 中国省市区地址三级联动jQuery插件 案例下载
中国省市区地址三级联动jQuery插件 案例下载 distpicker 是一款可以实现中国省市区地址三级联动jQuery插件.它使用简单,简单设置即可完成中国省市区地址联动效果. 安装 可以通过npm ...
- CUDA各版本官方下载地址
一.CUDA各版本官方下载地址 地址:https://developer.nvidia.com/cuda-toolkit-archive 二.说明 备忘,平时找个版本太难找了.
- Oracle jdk 历史版本官方下载地址及下载方法
Oracle jdk 历史版本官方下载地址及下载方法 原文转载至:http://blog.csdn.net/chwshuang/article/details/54925950 平时要新装一个系统环境 ...
- DotProject首页、文档和下载 - 项目管理工具 - 开源中国社区
DotProject首页.文档和下载 - 项目管理工具 - 开源中国社区
- centos所有版本镜像下载地址
centos所有版本镜像下载地址 版本号 下载地址 更新时间 centos2.1 iso镜像下载 2.1/ 2009/8/19 1:36 centos3.1 iso镜像下载 3.1/ 2005/ ...
- Tomcat各个版本的下载地址包括源码
Tomcat各个版本的下载地址包括源码: http://archive.apache.org/dist/tomcat **************** 选择版本 **************** ** ...
- Spring Boot 2 (六):使用 Docker 部署 Spring Boot 开源软件云收藏
Spring Boot 2 (六):使用 Docker 部署 Spring Boot 开源软件云收藏 云收藏项目已经开源3年多了,作为当初刚开始学习 Spring Boot 的练手项目,使用了很多当时 ...
随机推荐
- 什么是YUM
什么是Yum Yum(全称为 Yellow dog Updater, Modified)是一个在RedHat以及CentOS等Linux系统中的Shell前端软件包管理器.基于RPM包管理,能够从指定 ...
- 使用ajax提交登录
引入jquery-1.10.2.js或者jquery-1.10.2.min.js 页面 <h3>后台系统登录</h3> <form name="MyForm&q ...
- iframe 父框架调用子框架的函数
1.父框架定义: <iframe name="mainframe" id="mainframe" width="100%" scrol ...
- 附014.Kubernetes Prometheus+Grafana+EFK+Kibana+Glusterfs整合解决方案
一 glusterfs存储集群部署 注意:以下为简略步骤,详情参考<附009.Kubernetes永久存储之GlusterFS独立部署>. 1.1 架构示意 略 1.2 相关规划 主机 I ...
- emWin模拟器Visual Studio开发时无法printf打印的问题
1.emWin模拟器 为了方便用户学习evWin框架,Segger设计了一个PC仿真的工具,可以测试绝大部分GUI的功能,除了方便使用者学习之外,还可以加速项目开发进度.毕竟在PC上用Visual S ...
- File判断功能(新手)
//导入的一个类.import java.io.File;/* File判断功能*///创建的一个类.public class zylx3 { //公共静态的主方法. public static vo ...
- 13. Java 获取指定字符串出现的次数
方式一 /** * @param args */ public static void main(String[] args) { String srcText = "Hello World ...
- Ubuntu的BEEP去哪里了?
一直知道ubuntu的beep不响应了,但是一直都没太关注过它怎么了. 今天关注了一下,发现网上都是在问怎么关掉它的,时间还是在07年左右. 搜索到了一些帖子,有一些是说没有找到恢复的方法,还有一些, ...
- Bisecting GlcNAc is a general suppressor of terminal modification of N-glycan (解读人:王茹凯)
文献名:Bisecting GlcNAc is a general suppressor of terminal modification of N-glycan(平分GlcNAc是N-聚糖末端修饰的 ...
- CSRF和XSS区别和预防
名词解释 CSRF(Cross-site request forgery)跨站请求伪造 XSS (Cross-site scripting)跨站脚本攻击,这里缩写css被前端层叠样式表(Cascadi ...