Docker Curl error

curl -v https://www.google.com
getaddrinfo() thread failed to start
* Could not resolve host: www.google.com
* Closing connection 0

Fix;
– Adding seccomp=unconfined to your docker run command
or add this in your docker-compose

security_opt:
– seccomp:unconfined

Leave a Reply

Your email address will not be published. Required fields are marked *