I have a bunch of spring boot microservices that I want to dockerize and run locally on windows. Many of them have communication on each other on localhost for the localdev profile and also a connection to a postgres through localhost. I wanna switch the container’s localhost to host localhost similar to --network="host"
on linux. I tried a beta feature from windows docker with network_mode=host but it does not seem to work properly. Is it something like that feasible on windows ? On linux using --network="host"
everything works sharp.