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

后端 未结 6 555
野趣味
野趣味 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 05:01

    I believe the issue is within this lines:

    iptables -t filter -F

    iptables -t filter -X

    which indeeds clear all chains. One possible solution is to launch the docker daemon after the iptables setup script. Otherwise you will need to explicitly removes chains you're interested in.

提交回复
热议问题