如何在CentOS6.5系统中安装Docker

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在CentOS6.5系统中安装Docker相关的知识,希望对你有一定的参考价值。

开始安装docker之旅:
  [root@localhost ~]# uname -r
  2.6.32-431.el6.x86_64
  [root@localhost ~]# cat /etc/issue
  CentOS release 6.5 (Final)
  Kernel \r on an \m
  注意其他的源可能导致你的内核和docker的版本不一致,需要升级内核至3.x。
  安装:
  [root@localhost ~]# rpm -ivh http://dl.Fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
  Retrieving http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
  warning: /var/tmp/rpm-tmp.JN76fI: Header V3 RSA/SHA256 Signature, key ID 0608b895: NOKEY
  Preparing.。。 ########################################### [100%]
  1:epel-release ########################################### [100%]
  [root@localhost ~]# rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6
  [root@localhost ~]# yum -y install docker-io
  启动并设置开机自动启动
  [root@localhost ~]# service docker start
  Starting cgconfig service: [确定]
  Starting docker: [确定]
  [root@localhost ~]# chkconfig docker on
  获取cnetos镜像
  [root@localhost ~]# docker pull centos:latest
  centos:latest: The image you are pulling has been verified
  511136ea3c5a: Pull complete
  5b12ef8fd570: Pull complete
  34943839435d: Downloading [===》 ] 18.38 MB/232.5 MB 1h7m49s
 #官方安装方式docker pull imagename从docker的索引中心下载,imagename是镜像名称,例如docker pull Ubuntu就是下载base ubuntu并且tag是latest。
  我们还可以搜索基于 Fedora 和 Ubuntu 操作系统的容器。
  [root@localhost ~]# docker search ubuntu
  [root@localhost ~]# docker search fedora
  查看docker镜像
  [root@localhost ~]# docker images centos
  REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE
  centos latest 34943839435d Less than a second ago 224 MB
  运行docker运行shell
  [root@localhost ~]# docker run -i -t centos /bin/bash
  [root@2ce733141ece /]#
  [root@2ce733141ece /]#
  [root@2ce733141ece /]#
  [root@2ce733141ece /]#
  停止容器
  [root@localhost ~]# docker stop 《CONTAINER ID》
  删除所有容器
  docker rm $(docker ps -a -q)
  查看docker的子命令,直接敲docker 或完整的docker help 就可以
  常用命令
  总结一下常用命令:
  其中《》阔起来的参数为必选,[]阔起来为可选
  docker version 查看docker的版本号,包括客户端、服务端、依赖的Go等
  docker info 查看系统(docker)层面信息,包括管理的images, containers数等
  docker search 在docker index中搜索image
  docker pull 从docker registry server 中下拉image
  docker push 推送一个image或repository到registry
  docker push :TAG 同上,指定tag
  docker inspect 查看image或container的底层信息
  docker images TODO filter out the intermediate image layers (intermediate image layers 是什么)
  docker images -a 列出所有的images
  docker ps 默认显示正在运行中的container
  docker ps -l 显示最后一次创建的container,包括未运行的
  docker ps -a 显示所有的container,包括未运行的
  docker logs 查看container的日志,也就是执行命令的一些输出
  docker rm 删除一个或多个container
  docker rm `docker ps -a -q` 删除所有的container
  docker ps -a -q | xargs docker rm 同上, 删除所有的container
  docker rmi 删除一个或多个image
  docker start/stop/restart 开启/停止/重启container
  docker start -i 启动一个container并进入交互模式
  docker attach attach一个运行中的container
  docker run 使用image创建container并执行相应命令,然后停止
  docker run -i -t /bin/bash 使用image创建container并进入交互模式, login shell是/bin/bash
  docker run -i -t -p 将container的端口映射到宿主机的端口
  docker commit [repo:tag] 将一个container固化为一个新的image,后面的repo:tag可选
  docker build
  寻找path路径下名为的Dockerfile的配置文件,使用此配置生成新的image
  docker build -t repo[:tag] 同上,可以指定repo和可选的tag
  docker build - 使用指定的dockerfile配置文件,docker以stdin方式获取内容,使用此配置生成新的image
  docker port 查看本地哪个端口映射到container的指定端口,其实用docker ps 也可以看到。
  上面就是CentOS6.5安装Docker的方法介绍了,在安装Docker的时候,需要升级内核至3.x,以免版本不一样,本文除了介绍Docker的安装,还介绍了其常用的命令,希望对你有所帮助。
参考技术A 1. 为centos配置yum源, 可以使用网易、aliyun或sohu的 2. 配置epel源 /etc/yum.repos.d/epel.repo [epel] name=Extra Packages for Enterprise Linux 6 - $basearch baseurl=http://centos.ustc.edu.cn/epel/6/$basearch failovermethod=priorit...

如何在 CentOS 6.5 中安装 docker 1.9+?

【中文标题】如何在 CentOS 6.5 中安装 docker 1.9+?【英文标题】:How to install docker 1.9+ in CentOS 6.5? 【发布时间】:2016-04-24 15:37:46 【问题描述】:

我现在在 CentOS 6.5 上进行部署,我现在开始使用 docker。

所以,我按照以下说明操作:https://docs.docker.com/engine/installation/centos/

无论我按照哪种方法安装,我都会得到1.7.1的版本。

[root@VM_72_235_centos ~]# docker version
Client version: 1.7.1
Client API version: 1.19
Go version (client): go1.4.2
Git commit (client): 786b29d/1.7.1
OS/Arch (client): linux/amd64
Server version: 1.7.1
Server API version: 1.19
Go version (server): go1.4.2
Git commit (server): 786b29d/1.7.1
OS/Arch (server): linux/amd64

但现在我运行文档中的命令:

docker network ls

失败docker: 'network' is not a docker command.

而我终于知道网络动作最早是在1.9中引入的。

那么有没有办法在centos6中安装docker 1.9呢?

【问题讨论】:

【参考方案1】:

CentOS 6 和 RHEL 6 不再受支持,它们的最后一个版本是 docker 1.7.1。

文档的那一页 (https://docs.docker.com/engine/installation/centos/) 也提到了;

Docker 在 CentOS 7.X 上运行 无论您的 CentOS 版本如何,Docker 都需要 64 位安装。此外,您的内核必须至少为 CentOS 7 运行的 3.10。

运行这些发行版 (2.6.x) 的内核已经超过 13 年了,尽管 Red Hat 向后移植了新功能,但它们缺少 Docker 所需的某些选项,并且已证明不稳定,不适合生产。

如果你想(继续)使用 Docker,我鼓励你升级升级到 CentOS 7.x。

【讨论】:

谢谢楼主。我会认真重新考虑情况。

以上是关于如何在CentOS6.5系统中安装Docker的主要内容,如果未能解决你的问题,请参考以下文章

如何在CentOS6.5系统中安装Docker

如何在CentOS6.5系统中安装Docker

如何在CentOS6.5系统中安装Docker

如何在CentOS6.5系统中安装Docker

如何在CentOS6.5系统中安装Docker

如何在 CentOS 6.5 中安装 docker 1.9+?