2024-01-21, 08:20 PM
(This post was last modified: 2024-01-21, 08:21 PM by tmsrxzar. Edited 1 time in total.)
docker default behavior it's "supposed to" use the hosts' resolv.conf; is that resolv.conf from the host or container?
if it's the hosts; i can't advise where you're supposed to get your dns settings from
if it's the docker (only); https://docs.docker.com/network/#dns-services
compose can also use the dns flags independently of the host
dns:
- x.x.x.x # nameserver
but it would be better to fix the dns at the host level and get it to propagate to the container
if it's the hosts; i can't advise where you're supposed to get your dns settings from
if it's the docker (only); https://docs.docker.com/network/#dns-services
compose can also use the dns flags independently of the host
dns:
- x.x.x.x # nameserver
but it would be better to fix the dns at the host level and get it to propagate to the container