zoukankan      html  css  js  c++  java
  • Centos7 Docker安装部署

    1、系统环境:centos7版本

    [root@panfeng ~]# cat /etc/redhat-release 
     CentOS Linux release 7.5.1804 (Core) 
    [root@panfeng ~]#

    2、内核版本:

    [root@panfeng ~]# uname -r
    3.10.0-862.el7.x86_64
    [root@panfeng ~]#

    3、关闭selinux

    [root@panfeng ~]# getenforce 
    Permissive
    [root@panfeng ~]# 
        临时关闭selinux
            [root@panfeng ~]# setenforce 0
            [root@panfeng ~]# getenforce 
            Permissive
            [root@panfeng ~]# 
        永久关不selinux 
            1、执行临时关闭selinux
            2、修改selinux配置文件
            [root@panfeng ~]# sed -i 's#SELINUX=enforcing#SELINUX=disabled#g'  /etc/sysconfig/selinux

    4、centos7关闭防火墙

    [root@panfeng ~]# systemctl stop firewalld
    移除开机自启动
    [root@panfeng ~]# systemctl disable firewalld
    Removed symlink /etc/systemd/system/multi-user.target.wants/firewalld.service.
    Removed symlink /etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service.
    [root@panfeng ~]#

    5、安装docker-ce

    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 -y install docker-ce
    service docker start 或者  systemctl start docker
    docker-ce开机自启动    
        systemctl enable docker
    docker版本查看
            [root@panfeng ~]# docker version
            Client:
            Version:           18.06.0-ce        当前版本18
            API version:       1.38
            Go version:        go1.10.3
            Git commit:        0ffa825
            Built:             Wed Jul 18 19:08:18 2018
            OS/Arch:           linux/amd64
            Experimental:      false
            
            Server:
            Engine:
            Version:          18.06.0-ce
            API version:      1.38 (minimum version 1.12)
            Go version:       go1.10.3
            Git commit:       0ffa825
            Built:            Wed Jul 18 19:10:42 2018
            OS/Arch:          linux/amd64
            Experimental:     false
    [root@panfeng ~]#
  • 相关阅读:
    [转]在 javascript 按键事件中,按键值的对照表
    表达式树(Expression Tree)
    WPF之路——用户控件对比自定义控件UserControl VS CustomControl)
    wpf创建用户控件(计时器控件)
    WPF 命令
    WPF自定义DataGrid分页控件
    WPF ----在UserControl的xaml里绑定依赖属性
    wpf 自定义ListBox
    WPF 自定义NotifyPropertyChanged
    WPF 使用附加属性增加控件属性
  • 原文地址:https://www.cnblogs.com/alber/p/9494973.html
Copyright © 2011-2022 走看看