We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
> This known issue for Docker and is discussed in detail here: https://development.robinwinslow.uk/2016/06/23/fix-docker-networking-dns/
Simple fix is to create the file /etc/docker/daemon.json and insert: { "dns": ["10.0.0.2", "8.8.8.8"] } where 10.0.0.2 is the first DNS server your machine requests records from, and 8.8.8.8 is the fallback DNS server, google in this case.
Simple fix is to create the file /etc/docker/daemon.json
/etc/docker/daemon.json
and insert:
{ "dns": ["10.0.0.2", "8.8.8.8"] }
where 10.0.0.2 is the first DNS server your machine requests records from, and 8.8.8.8 is the fallback DNS server, google in this case.
10.0.0.2
8.8.8.8
Yes! It worked! Thank you!
Originally posted by @nirajkvinit in #270 (comment)
For those who still didn’t help, try adding Cloudflare-dns to the list { "dns": ["10.0.0.2", "8.8.8.8", "1.1.1.1"] }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Yes! It worked! Thank you!
Originally posted by @nirajkvinit in #270 (comment)
For those who still didn’t help, try adding Cloudflare-dns to the list
{
"dns": ["10.0.0.2", "8.8.8.8", "1.1.1.1"]
}
The text was updated successfully, but these errors were encountered: