I'm using default docker on windows configuration and I run configure an application like this:
docker run -d -p 8080:80 --name openproject ...
I can access the application using browser, but in fiddler I can't see traffic to the docker container. I see other traffic, so I assume the browser has correct proxy settings.
I've set proxy in docker settings to fiddler (http://127.0.0.1:8888), but still nothing from the container is visible to fiddler.
127.0.0.1
andlocalhost
. (This isn't about the URL of the proxy, it's about the URL of the target resource). visualstudio.uservoice.com/forums/121579-visual-studio-ide/… - EricLawlocalhost.fiddler
as the address you use to call the Docker container. Fiddler will get that address and automatically turn it intolocalhost
. - EricLaw