<div dir="auto"><div>I'm not too familiar with docker containers, but....</div><div dir="auto"><br></div><div dir="auto">Seems docker is trying to delete (the "-D" flag) a rule from the PREROUTING chain of the nat table.</div><div dir="auto"><br></div><div dir="auto"> That message seems to indicate there's no 'DOCKER' chain defined in your iptables firewall rules, ergo you can't "jump" (the "-j" flag) the packet processing (aka Transfer) from the PREROUTING chain (of the "nat" table) to the non-existent DOCKER chain. Or, apparently delete a rule specifying just that.<div dir="auto"><br></div><div dir="auto">Assuming that docker doesn't completely wipe your existing iptables rules, define an empty DOCKER chain in iptables before launching docker:</div><div dir="auto"><br></div><div dir="auto">iptables -N DOCKER</div><div dir="auto"><br></div><div dir="auto">and see what happens.  Mind you, that will absolutely not route your packets in whichever means docker expects.  You'll still need to investigate why that chain isn't being created.</div><div dir="auto"><br><a href="https://www.digitalocean.com/community/tutorials/how-to-list-and-delete-iptables-firewall-rules">https://www.digitalocean.com/community/tutorials/how-to-list-and-delete-iptables-firewall-rules</a></div><div dir="auto"><br><div data-smartmail="gmail_signature" dir="auto">ᕦ(ò_óˇ)ᕤ<br>do you even lift bro?<br>Ubber::Geek<br><a href="http://grlug.org/" target="_blank" rel="noreferrer">http://grlug.org/</a></div></div><br><div class="gmail_quote" dir="auto"><div dir="ltr" class="gmail_attr">On Tue, Feb 22, 2022, 6:59 PM Grand Rapids Linux Users Group <<a href="mailto:grlug@grlug.org" target="_blank" rel="noreferrer">grlug@grlug.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">On Tue, 22 Feb 2022, Grand Rapids Linux Users Group wrote:<br>
<br>
> Hmmm. I don’t quite understand what you mean. Can you provide more context?<br>
><br>
Starting the docker daemon reqires a tarfet "DOCKEE", but it is missing;<br>
as a result, the daemon starts but the docker0 network comes uo "DOWN".<br>
<br>
Thia is the entery in firewalld.log:<br>
<br>
> > -D PREROUTING -m addrtype --dst-type LOCAL -j DOCKER' failed: iptables<br>
> > v1.8.7 (legacy): Couldn't load target `DOCKER':No such file or directory<br>
> ><br>
        TTFR!<br>
-- <br>
grlug mailing list<br>
<a href="mailto:grlug@grlug.org" rel="noreferrer noreferrer" target="_blank">grlug@grlug.org</a><br>
<a href="https://shinobu.grlug.org/mailman/listinfo/grlug" rel="noreferrer noreferrer noreferrer" target="_blank">https://shinobu.grlug.org/mailman/listinfo/grlug</a><br>
</blockquote></div></div></div>