I have a host machine with some hosts resolution defined in its /etc/hosts file.
On this machine I'm running my Docker containers configured with a Bridge network.
Since I'm not on the host network my Docker containers have no access of the hosts definitions of my machine /etc/hosts file.
Unfortunately having a DNS it is not an option at the moment.
My question is how can I make use of those definitions in my containers using bridge networking? I read mounting the hosts /etc/hosts file in the container is not a good choice since that's handled internally by the docker deamon.
Do you know how else I can achieve this?
You have 2 options
docker run -v /etc/hosts:/etc/hosts <yourimage>
the problem with the option is, that your container hosts file is overwritten, which will backfire if you want to contact any other service in that docker-network.
Thus i would do
docker run -v /etc/hosts:/tmp/hosts <yourimage>
And use a entrypoint in your image, which does something among this lines
cat /tmp/hosts >> /etc/hosts
a) You want to filter out some lines like localhost, or select specific lines using grep b) You want to ensure you do not repeat this on every container bootstrap, so write a semaphore or similar ( a file, check the file whatever )