docker-安装

Posted scajy

tags:

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

1. docekr-安装

docker版本
支持平台
centos7 安装docker

2. docekr版本

社区办(community Edition,简称:CE)
企业办(Enterprise Edition,简称:EE)

3. 支持平台

技术分享图片

4.安装docker

4.1 关闭系统防火墙和selinux和firewalld

[[email protected] ~]# /bin/systemctl disable firewalld
[[email protected] ~]# getenforce                 #查看selinux是否开启
Enforcing                                         #enforcing表示selinux开启的,
[[email protected] ~]# sed -i ‘s/SELINUX=enforcing/SELINUX=disabled/g‘  /etc/selinux/config      #修改配置文件,需要重启才后永久关闭
[[email protected] ~]# setenforce 0      #临时关闭selinx
[[email protected] ~]# getenforce      #查看是否关闭
Disabled

4.2 安装docker源

[[email protected] ~]# yum install -y yum-utils device-mapper-persistent-data   lvm2

4.3 安装docker镜像源

[[email protected] ~]#  yum-config-manager     --add-repo     https://download.docker.com/linux/centos/docker-ce.repo

4.4 安装docker

[[email protected] ~]# yum install -y docker-ce

4.5 启动docker,设置开机启动

[[email protected] ~]# /bin/systemctl start docker
[[email protected] ~]# /bin/systemctl enable docker      #设置开机启动
Created symlink from /etc/systemd/system/multi-user.target.wants/docker.service to /usr/lib/systemd/system/docker.service.



以上是关于docker-安装的主要内容,如果未能解决你的问题,请参考以下文章

在Tomcat的安装目录下conf目录下的server.xml文件中增加一个xml代码片段,该代码片段中每个属性的含义与用途

PHP代码-psysh调试代码片段工具

spring boot 整合 redis

VIM 代码片段插件 ultisnips 使用教程

redis存储session配制方法

Android 插件化VirtualApp 源码分析 ( 目前的 API 现状 | 安装应用源码分析 | 安装按钮执行的操作 | 返回到 HomeActivity 执行的操作 )(代码片段