I want to make it so that the Docker container I spin up use the same /etc/hosts
settings as on the host machine I run from. Is there a way to do this?
I
Also you can install dnsmasq to the host machine, by the command:
sudo apt-get install dnsmasq
And then you need to add the file /etc/docker/daemon.json with content:
{
"dns": ["host_ip_address", "8.8.8.8"],
}
After that, you need to restart the Docker service by command sudo service docker restart
This option forces to use the host DNS options for every Docker container. Or you can use it for a single container, and the command-line options are explained by this link. Also docker-compose options are supported (you can read about it by this link).
All three options work for me.
--network=host
)IMO, passing --network=host
option while running Docker is a better option as suggested by d3ming
over other options as suggested by other answers:
The host machine's /etc/hosts
file can't mount into a container. But you can mount a folder into the container. And you need a dnsmasq container.
A new folder on host machine
mkdir -p ~/new_hosts/
ln /etc/hosts ~/new_hosts/hosts
mount the ~/new_hosts/ into container
docker run -it -v ~/new_hosts/:/new_hosts centos /bin/bash
Config dnsmasq use /new_hosts/hosts
to resolve name.
Change your container's DNS server. Use the dnsmasq container's IP address.
If you change the /etc/hosts
file on the host machine, the dnsmasq container's /new_hosts/hosts
will change.
I found a problem:
The file in dnsmasq container
/new_hosts/hosts
can change. But the new hosts can't resolve. Becausednsmasq
useinotify
listen change event. When you modify a file on the host machine. Thednsmasq
can't receive the signal so it doesn't update the configuration. So you may need to write a daemon process to read the/new_hosts/hosts
file content to another file every time. And change thednsmasq
configuration to use the new file.
If you are running a virtual machine for running Docker containers, if there are hosts (VMs, etc.) you want your containers to be aware of, depending on what VM software you are using, you will have to ensure that there are entries on the host machine (hosting the VM) for whatever machines you want the containers to be able to resolve.
This is because the VM and its containers will have the IP address of the host machine (of the VMs) in their resolv.conf file.