On docker toolbox. I have a web application running on port 5004.
How to check it on the browser?
Because I typed 192.168.99.100:5004
Nothing there, This site can’t be reached
Sorry for the simple question but I have no clue.
Share and learn in the Docker community.
On docker toolbox. I have a web application running on port 5004.
How to check it on the browser?
Because I typed 192.168.99.100:5004
Nothing there, This site can’t be reached
Sorry for the simple question but I have no clue.
When you say docker run -p 5004
without specifying a port number, Docker picks its own port number, usually starting at 32768 and working upwards. docker ps
will tell you what port number it picked (or, more verbosely but machine-parseably, docker inspect
); or you can specify your own port number, like docker run -p 5004:5004 ...
Thanks. It works. I use192.168.99.100:32678