1
On my HOST server I put in the file /etc/hosts the input:
192.168.9.9 server_1
I need you inside a Docker container, if I call:
 wget server_1:1234 ,  it accesses port 1234 of ip 192.168.9.9  (is the IP of the HOST) where Docker is installed.
I cannot use the --Networks = host directive
It would be possible to create a service or edit host iptables?
Managed to try the add-host?
– tvdias