I can't browse to "IPAddress": "172.17.0.2"

Hi,
I run this command:
docker run jenkins/jenkins
and it worked.

Now I want brows to the “IPAddress”: “172.17.0.2”, and I couldn’t,
I also tried to brows to port 8080- and I couldn’t too.

If you know the answer- it will help me a lot.
Thank you,
Rachel

you might be able to browse to that on the actual computer its running on but no other computer. Docker networks (which that IP looks like its output from docker inspect) tends to be private.

Essentially you want the -p flag to expose the port to your localhost/rest of network - See docker run | Docker Docs

1 Like

Hi!
Thank you very much - this is the solution!