failed to create network error response from daemon filed to setup ip tables问题

问题

今天在环境上搭建平台,执行docker-compose up -d 报错

Error response from daemon: Failed to Setup IP tables: Unable to enable SKIP DNAT rule:  (iptables failed: iptables --wait -t nat -I DOCKER -i br-b649822bbcff -j RETURN: iptables: No chain/target/match by that name. (exit status 1))

如下图
在这里插入图片描述

方法

这是因为在启动docker的时候防火墙做了策略,如果容器在运行中,停止防火墙,在操作容器就会报这个错误,我们可以重启docker解决此问题

systemctl restart docker.service
然后
docker-compose up -d 

你可能感兴趣的:(Docker,运维,docker)