Docker安装
Posted xuyingzhong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Docker安装相关的知识,希望对你有一定的参考价值。
$ yum remove docker-latest-logrotate docker-logrotate docker-selinux dockdocker-engine $ yum install -y yum-utils device-mapper-persistent-data lvm2 # 添加docker官方源 $ yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo $ yum makecache fast $ yum install docker-ce # 国内部分用户可能无法连接docker官网提供的源,这里提供阿里云的镜像节点供测试使用 $ yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo $ rpm --import http://mirrors.aliyun.com/docker-ce/linux/centos/gpg $ yum makecache fast $ yum -y install docker-ce $ systemctl start docker $ systemctl status docker
以上是关于Docker安装的主要内容,如果未能解决你的问题,请参考以下文章