Docker - Install docker on CentOS

1. 准备

由于 Dokcer 需要 64bit OS, 版本号 3.10 或者更新的版本。所以,需要我们先确认我们的 CentOS 系统

$ uname -r

output :: 3.10.0-229.el7.x86_64

2.使用Yum 安装

2.1 更新 yum 到最新版本

$ yum update

2.2 Add the yum repo

$ sudo tee /etc/yum.repos.d/docker.repo <<-‘EOF‘

[dockerrepo]

name=Docker Repository

baseurl=https://yum.dockerproject.org/repo/main/centos/7/

enabled=1

gpgcheck=1

gpgkey=https://yum.dockerproject.org/gpg

EOF

3. 安装 Docker

$yum install docker-engine

4. 打开Docker service.

$ systemctl enable docker.service

5. 启动 Docker daemon

$ systemctl start docker

6. 设置 daemon 默认启动

$ systemctl enable docke

时间: 2024-10-24 01:01:24

Docker - Install docker on CentOS的相关文章

[Docker] Install Docker on Windows (hp) and start with Kitematic

Well, on Windows costs a little bit effort to run docker. 1. You need to enable Virtulization: Oh hp Windows machine, you need to Turn off you laptop Start it and click 'esc' repeatly Until if jumps a menu, you click F10 to enter 'BIOS setting' Then

install docker on centos 6

前言: docker 官方给出的文档是建议安装在centos 7 版本上,并且是x64 系统,kernel 版本为3.10或更高版本 可使用 uname -r 查看kernel版本 uname -r 2.6.32-573.el6.x86_64 这里由于使用的是centos 6.7系统,没有升级,所以kernel 版本为2.6 可使用yum upgrade 升级,或使用2.6的内核安装docker 注:使用低于3.10版本的内核安装docker 可能会有些问题. 官方文档https://docs.

centos Install Docker

安装必备软件 yum -y install iptables  iptables-services net-tools vim wget 安装Dockeryum -y install docker 下载centos镜像docker pull centos 查看centos 镜像docker images centos 运行一个Docker容器docker run -i -t centos /bin/bash 搜索Ubuntu镜像docker search Ubuntu 显示正在运行的容器(需要先

60、Docker 学习笔记(CentOS 7.1)

基本概念 Docker 包括三个基本概念 镜像(Image) 容器(Container) 仓库(Repository)理解了这三个概念,就理解了 Docker 的整个生命周期. Docker 镜像 Docker 镜像就是一个只读的模板.例如:一个镜像可以包含一个完整的 ubuntu 操作系统环境,里面仅安装了 Apache 或用户需要的其它应用程序.镜像可以用来创建 Docker 容器.Docker 提供了一个很简单的机制来创建镜像或者更新现有的镜像,用户甚至可以直接从其他人那里下载一个已经做好

CentOS 6.5上安装docker与docker对中文字符集的支持

一.CentOS 6.5上安装docker 在CentOS 6.5 还不能够直接通过yum install -y docker 来安装docker服务 在一些文档中有看到说是因为内核太低的原因导致的,因为docker至少要做3.8以上的版本才能安装, 但是我发现其实并不需要升级内核就可以实现docker的安装不过,也有可能我的安装存在偶然性, 但是我还是记录一下,以防日后忘记. 1.先查看下你的系统内核是多少 # uname -r 2.6.32-431.el6.x86_64 我的是CentOS

Docker 学习笔记(CentOS 7.1)

基本概念 Docker 包括三个基本概念 镜像(Image) 容器(Container) 仓库(Repository)理解了这三个概念,就理解了 Docker 的整个生命周期. Docker 镜像 Docker 镜像就是一个只读的模板.例如:一个镜像可以包含一个完整的 ubuntu 操作系统环境,里面仅安装了 Apache 或用户需要的其它应用程序.镜像可以用来创建 Docker 容器.Docker 提供了一个很简单的机制来创建镜像或者更新现有的镜像,用户甚至可以直接从其他人那里下载一个已经做好

install docker on centos7

copy from:https://www.youtube.com/watch?v=pm55BUwQ0iE # Prerequisites - Kernel must be 3.10 at minimum - For checking kernel version, use this command: uname -r # Add Docker's repository - Create file docker.repo and save it in /etc/yum.repos.d/ sudo

Centos安装docker及docker基础命令

安装 rpm -ivh http://mirrors.sohu.com/fedora-epel/6/x86_64/epel-release-6-8.noarch.rpm sed -i 's/^mirrorlist=https/mirrorlist=http/' /etc/yum.repos.d/epel.repo yum -y install docker-io service docker start 基础命令 docker search 在仓库中寻找镜像 docker  pull 拉取镜像

【翻译】docker install

---恢复内容开始--- [官方文档] Install Docker Estimated reading time: 8 minutes Docker is available in two editions: Community Edition (CE) and Enterprise Edition (EE). Docker Community Edition (CE) is ideal for developers and small teams looking to get started