• Docker安装准备


    第一次写作下笔记:

    以centos6.5安装yum优先级插件

    yum install yum-priorities

    1.epel简介: https://fedoraproject.org/wiki/EPEL/zh-cn

    rpm -Uvh http://mirrors.ustc.edu.cn/fedora/epel/6/x86_64/epel-release-6-8.noarch.rpm
    rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm

    以上URL请按实际情况修改

    2.查看是否安装成功

    rpm -q epel-release

     3.导入key:

    rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6

    4.修改/etc/yum.repos.d/epel.repo文件

    在[epel]最后添加一条属性 priority=11

    vi /etc/yum.repos.d/epel.repo

    意思是yum先去官方源查,官方没有再去epel的源找

    5.重建缓存  

    yum makecache  

     docker安装与启动

        安装docker


    [root@localhost /]# yum -y install docker-io

    配置文件


    [root@localhost /]# vi /etc/sysconfig/docker 可以修改参数 如: other-args列更改为:other_args="--exec-driver=lxc --selinux-enabled" 版本有所更新需要参考实际

        启动docker服务

    [root@localhost /]# service docker start
    Starting cgconfig service:                                    [  OK  ]
    Starting docker:                                              [  OK  ]

    将docker加入开机启动
    [root@localhost /]# chkconfig docker on

        基本信息查看

        docker version:查看docker的版本号,包括客户端、服务端、依赖的Go等

    [root@localhost /]# docker version

    如果有信息表示成功

     
  • 相关阅读:
    Python3.4的Pillow库实现验证码图片
    希尔排序
    二分法排序
    [算法天天练]选择排序
    冒泡 [Python]
    python -- 结构数据类型(列表、元组、集合、字典)
    python -- 字符串操作
    python -- 基础语法
    python -- 环境搭建
    Unittest方法 -- 以test开头实例
  • 原文地址:https://www.cnblogs.com/pomme/p/6165200.html
Copyright © 2020-2023  润新知