我想从邮递员扩展(铬)中导出一个特定请求并将其发送给另一个开发人员,以便他可以导入它.我怎么能这样做?
当我启动任何容器时docker run,我们得到一个新的veth接口.删除容器后,应删除与容器链接的veth接口.但是,有时它会失败(然后容器启动出错):
root@hostname /home # ifconfig | grep veth | wc -l
53
root@hostname /home # docker run -d -P axibase/atsd -name axibase-atsd-
28381035d1ae2800dea51474c4dee9525f56c2347b1583f56131d8a23451a84e
Error response from daemon: Cannot start container 28381035d1ae2800dea51474c4dee9525f56c2347b1583f56131d8a23451a84e: iptables failed: iptables --wait -t nat -A DOCKER -p tcp -d 0/0 --dport 33359 -j DNAT --to-destination 172.17.2.136:8883 ! -i docker0: iptables: No chain/target/match by that name.
(exit status 1)
root@hostname /home # ifconfig | grep veth | wc -l
55
root@hostname /home # …Run Code Online (Sandbox Code Playgroud)