Known errors and solutions

Get things fixed!

docker: Error response from daemon: driver failed programming external connectivity on endpoint XXXX: (iptables failed: iptables --wait -t filter -A DOCKER ! -i docker0 -o docker0 -p tcp -d 172.17.0.2 --dport XXXX -j ACCEPT: iptables: No chain/target/match by that name.

After resetting iptables, docker run command returns the error above.

Solution:

iptables -t filter -N DOCKER

Last updated