Docker的安装

-- 1. 卸载老版本 $ yum -y remove docker docker-common docker-selinux docker-engine -- 2. 安装需要的软件包 $ yum install -y yum-utils device-mapper-persistent-data lvm2 -- 3. 设置国内yum源 $ yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo -- 4. 查看docker版本 $ yum list docker-ce --showduplicates|sort -r -- 5. 安装 $ yum install docker-ce-18.03.1.ce -y -- 6. 配置docker镜像源 $ vi /etc/docker/daemon.json { "registry-mirrors": ["http://hub-mirror.c.163.com"] } -- 6. 启动 $ systemctl start docker -- 7. 加入开机自启 systemctl enable docker
上一篇:Use Samba to share files in Linux and Windows


下一篇:oh-my-zsh 每次打开出现 zsh compinit: insecure files, run compaudit for list. Ignore insecure files and con