CentOS7部署Docker

Posted baozouxiaonengmao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS7部署Docker相关的知识,希望对你有一定的参考价值。

  安装一些必要的系统工具:

yum install -y yum-utils device-mapper-persistent-data lvm2

  添加软件源信息:

 yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo

  更新 yum 缓存:

yum makecache fast

安装 Docker-ce:

yum -y install docker-ce
启动 Docker 后台服务:
systemctl start docker
测试运行 hello-world:
docker run hello-world  出现如下报错

技术图片

配置网卡

vim /etc/sysconfig/network-scripts/ifcfg-ens32 

加入如下两行:

DNS1=8.8.8.8
DNS2=114.114.114.114

重启网卡

systemctl restart docker

继续测试hello-world

技术图片

vim  /etc/sysctl.conf  

加入:net.ipv4.ip_forward=1

技术图片

搭建完成

 

以上是关于CentOS7部署Docker的主要内容,如果未能解决你的问题,请参考以下文章

Dockercentos7 安装使用Docker

dockerCentOS7.4+Python3.7+selenium+Firefox+tesseract的搭建

Docker centos7 systemctl deos not work : 无法连接 D-bus

docker不能正常使用cron任务

安装MySQL出现错误?快去试试在Docker CentOS7.x镜像中通过源码方式安装

Linux Centos7部署环境安装-CentOS