mirror of
https://github.com/yeasy/docker_practice.git
synced 2024-11-14 10:33:38 +00:00
4751e59a6f
Signed-off-by: Kang Huaishuai <khs1994@khs1994.com>
786 B
786 B
CentOS8 安装 Docker
当前官方版本的 Docker 尚未支持 CentOS8,我们可以使用 Moby 项目维护者 AkihiroSuda 所构建的包,具体请参考 https://github.com/AkihiroSuda/moby-snapshot
设置
由于 CentOS8 防火墙使用了 nftables
,但 Docker 尚未支持 nftables
, 我们可以使用如下设置使用 iptables
:
更改 /etc/firewalld/firewalld.conf
# FirewallBackend=nftables
FirewallBackend=iptables
或者执行如下命令:
$ firewall-cmd --permanent --zone=trusted --add-interface=docker0
$ firewall-cmd --reload