From a docker container when I try to curl 'another container name', curl first tries to resolve the name to IPv6. This causes few seconds delay because the web server is not reachable over ipv6.
I removed the link local address on the container interface and also disabled ipv6 on the container's lo and eth0 interface. curl still tries to resolve the name to IPv6 first (unless its forced via curl -4).
This seems wrong. Why does curl try to resolve the name to ipv6 even if ipv6 is disabled ?
--ipv4
is a relevant flag tocurl
in that situation. – thrig Feb 24 at 23:41