Debugging reverse proxy to localhost from docker

solved…

the key was this:

However, you have to make sure your service on the actual host is listening on whatever host.docker.internal resolves to (usually 172.17.0.1 - the docker0 interface).
Meaning, if you configured that service on the host to only listen on 127.0.0.1 , you will have to change that.

from:

So rolling with host mode on docker :confused: