美文网首页
「物联网」Centos7 64位docker 部署

「物联网」Centos7 64位docker 部署

作者: SmartKarren | 来源:发表于2018-07-20 15:19 被阅读0次
    $ yum install docker-io
    $ service docker start
    #如果启动失败,提示SELinux is not supported
    $ vi /etc/sysconfig/docker
    #修改下面这一句
    # Modify these options if you want to change the way the docker daemon runs
    
    OPTIONS='--selinux-enabled  --log-driver=journald --signature-verification=false'
    if [ -z "${DOCKER_CERT_PATH}" ]; then
        DOCKER_CERT_PATH=/etc/docker
    fi
    
    #修改为
    # Modify these options if you want to change the way the docker daemon runs
    
    OPTIONS='--selinux-enabled=false  --log-driver=journald --signature-verification=false'
    if [ -z "${DOCKER_CERT_PATH}" ]; then
        DOCKER_CERT_PATH=/etc/docker
    fi
    

    相关文章

      网友评论

          本文标题:「物联网」Centos7 64位docker 部署

          本文链接:https://www.haomeiwen.com/subject/efcqmftx.html