jiao_ben/docker/docker_yum.sh
2021-06-28 21:49:23 +08:00

20 lines
409 B
Bash
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/bash
## Docker配置yum源yum安装Docker 2017-03-13
## http://www.aqzt.com
## email: ppabc@qq.com
## robert yu
## redhat 7
tee /etc/yum.repos.d/docker.repo <<-'EOF'
[dockerrepo]
name=Docker Repository
baseurl=https://yum.dockerproject.org/repo/main/centos/7/
enabled=1
gpgcheck=1
gpgkey=https://yum.dockerproject.org/gpg
EOF
yum install -y docker-engine
service docker start
chkconfig docker on