How to reach ports on windows machine from containers?
I can ping address 10.0.75.1
(windows machine’s IP, which is docker’s NAT) from containers:
/app # ping 10.0.75.1
PING 10.0.75.1 (10.0.75.1): 56 data bytes
64 bytes from 10.0.75.1: seq=0 ttl=127 time=0.503 ms
64 bytes from 10.0.75.1: seq=1 ttl=127 time=0.266 ms
But can not reach opened ports for example:
/app # curl 10.0.75.1:7000
...<hangs>
Probably it is by design, but wanted to get a comment.