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 touch /etc/yum.repos.d/docker.repo

- Edit docker.repo and write this:

[dockerrepo]

name=Docker Repository

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

enabled=1

gpgcheck=1

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

# Install Docker

sudo yum -y install docker-engine

# Starting Docker Service

sudo systemctl start docker.service

时间: 2024-10-06 00:45:31

install docker on centos7的相关文章

About building ant & install ant on centos7 {ant source code 1.94}

? ? ? ? ? ? ? hamcrest-junit-2.0.0.0.jar java-hamcrest-2.0.0.0.jar ? copy to ant-sourceCodeDir/lib/optimal ? ? ? ? About building ant & install ant on centos7 {ant source code 1.94}

Install Docker on Mac OS X(转)

Install Docker on Mac OS X You can install Docker using Boot2Docker to run docker commands at your command-line. Choose this installation if you are familiar with the command-line or plan to contribute to the Docker project on GitHub. Alternatively,

Docker在Centos7下的安装

一.检查前提条件 内核 检查内核的版本是否安装了3.8或更高的版本 [[email protected] ~]# uname -aLinux localhost.localdomain 3.10.0-123.13.2.el7.x86_64 #1 SMP Thu Dec 18 14:09:13 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux 2.检查Device Mapper [[email protected] ~]# ls -l /sys/class/misc/

Ubuntu install Docker

首先需要说明的是,根据Docker的官方文档,Docker的安装必须在64位的机子上.这里只说明Ubuntu 14.04与16.04,我成功安装成功过Ubuntu 14.04,16.04还没有测试过,若为Ubuntu 12.04参考官方文档. 官方文档地址:https://docs.docker.com/engine/installation/linux/ubuntulinux/ 建议先按照官方文档步骤安装,若读不懂可以参考我写的,有问题请给我留言 -----------------------

Install Docker on Mac OS X

小白来山寨一把官网文档. Docker不能直接跑在OS X上,需要先安装下VirtualBox和boot2docker.boot2docker会帮我们启动vm,启动docker,并且本身提供一些管理命令. boot2docker也很轻量级,完全在内存里启动一个VM,只占24M大小,几秒内就可以启动. 安装过程 1) 下载VirtualVM-xxx-xxx.dmg,并安装. 2) 使用brew安装boot2docker以及docker brew install boot2docker brew i

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 显示正在运行的容器(需要先

How to install Docker on Ubuntu

Docker currently only runs on 64-bits platforms and requires that the kernal version be no less than 3.10.in this tutorial , i use ubuntu 16.04 and the kernal version is 4.13.0-43-generic you can use this command to find your linux-version and linux-

【docker 入门 - 01】- Docker 在 Centos7 上安装与测试

一.学习文档 官网网站: https://www.docker.com 中文网站:http://www.docker-cn.com 官方安装文档:https://docs.docker.com/install/linux/docker-ce/centos/ 最好的文档和学习路劲,都是来自官方的一手资料!当然,文档写的不好的除外... <注>:英文还能凑合的,尽量去官网安装,毕竟能够跟的上步伐! 这里的解释顺序按照普通的安装步骤走,可能会和官方顺序有点不同. 以下的安装步骤都需要网络的支持哦,如

Docker 0x03:Install Docker

目录 Install Docker Centos yum 安装 运行docker-daemon并开机自启动 运行hello-world应用docker容器中 Ubn Install Docker docker现在分Moby,Docker CE 和Docker EE.由于docker开源后,将docker开源项目变为了Moby项目.对于想开发docker的人现在转移到Moby,而对于我们使用docker的用户,即再docker上有的应用开发和维护,还是关注docker EE. Centos yum