5

I am getting following error message whenever I try to fire up my jupyter notebook for tensorflow.

Browser Error

enter image description here

Following is my status of docker in which I have got

  1. Docker machines running
  2. Docker Images Downloaded

enter image description here

I used Docker image ID to run it in docker

enter image description here

I wonder why still my jupyter notebook is NOT getting fired although it is running properly in bash?

Updates(Setting in VirtualBox)

enter image description here

Naseer
  • 4,041
  • 9
  • 36
  • 72

1 Answers1

2

The problem here is that the container does not expose a port. You need to explicitly map the port to the host operating system:

docker run -p 8888:8888 -p 6006:6006 -t -i b.gcr.io/tensorflow/tensorflow ./run_jupyter.sh`
fabrizioM
  • 46,639
  • 15
  • 102
  • 119