I have two applications running on the same windows host, different docker bridge networks
network 1:
containerA (web server openning port 8080)
containerB
network 2:
containerC
containerD
Now on container C, I'm tring to send a http request to containerA via http://host.docker.internal:8080, it fails with 404 not found.
If I open http://localhost:8080 on host browser, it works fine, what's the problem here?
How can I get HTTP access to container A via container C?