I can't get Docker containers to access the in

2020-02-17 08:29发布

I'm my wits end with this, I've combed every single google result and nothing helps.

I'm completely unable to get docker containers to access the internet. IP forwarding is enabled (net.ipv4.ip_forward = 1), ufw is turned off, I've tried adding the -dns 8.8.8.8 -dns 8.8.4.4 flags. Every possible solution I've ever found on google fails.

Anyone have any idea how to help?

Attempting to reset everything, as recommend here causes the entire thing to break by telling me that docker -d isn't running even though it is.

2条回答
Fickle 薄情
2楼-- · 2020-02-17 09:08

Resolved. I followed these instructions: commented out dns=dnsmasq line in NetworkManager.conf

查看更多
聊天终结者
3楼-- · 2020-02-17 09:09

I was facing the same problem. So, to solve that issue I've started the container using the argument --net=host, it worked perfectly for me.

Here goes the full statement

sudo docker start --net=host -it --name ex_ngninx ubuntu
查看更多
登录 后发表回答