docker安装
1、添加docker安装yum源
cat >/etc/yum.repos.d/doocker.repo<<-EOF
[dockerrepo]
name=Docker Repostory
baseurl=https://yum.dockerproject.org/repo/main/centos/7
enabled=1
gpgcheck=1
gpgkey=https://yum.dockerproject.org/gpg
EOF
2、执行安装
yum install docker-engine
3、启动docker
systemctl start docker.service
4、设置开机启动
systemctl enable docker.service
5、查看docker进程状态
ps -ef|grep docker
或者
systemctl |grep docker
6、防火墙设置
centos7默认使用的是firewalld防火墙导致我们不能正常使用docker,因此需要禁止掉
systenctl disable firewalld
7、安装iptables
必须安装iptables,docker才能使用,不能停止掉,不然docker无法启动
yum -y install iptables-services
8、启动iptables
systemctl start iptables
9、设置开机启动
systemctl enable iptables
作者:凉生墨客
本文版权归作者所有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。