Running docker container : iptables: No chain/target/match by that name

后端 未结 6 511
野趣味
野趣味 2021-01-30 04:20

I\'m trying to run a container but I get the following issue :

Error response from daemon: Cannot start container b005715c40ea7d5821b15c44f5b7f902d4b39da7c83468f         


        
6条回答
  •  粉色の甜心
    2021-01-30 04:56

    I faced the same problem in a docker-compose setup.

    1. Clear all chains:

    sudo iptables -t filter -F
    sudo iptables -t filter -X
    

    2. Then restart Docker Service:

    systemctl restart docker
    

提交回复
热议问题