I am running docker on my windows 10 machine , i have docker for windows installed and when i run selenium hub image with exposes ports it works fine , I can view the selenium hub console with localhost:4444 (4444 is the exposed port) . Now i want other machines connected to the same network to be able to connect to my selenium hub container .
How can i achieve this .
I have exposed ports using -p 4444:4444 , but this looks good for working between the host machine and the docker container.
hub: image: selenium/hub:latest ports: - "4444:4444"