Docker newb: problem with using docker served jupyter kernel in host browser

Hi,

So im trying to use a kaggle docker image to run jupyter notebooks. First of all im using Docker Toolbox on windows 10.

I do the following steps:

  1. docker run --rm -it -p 8888:8888 -v ~/Desktop/ gcr.io/kaggle-images/python /bin/bash

  2. pip uinstall tensorflow (cause otherwise i get instructionset error when trying to start jupyter)

  3. jupyter notebook --ip=‘0.0.0.0’ --port=8888 --no-browser --allow-root

When i past this into my host browser i get no connection. I assume its because the urls have the container id instead of localhost. Any help appreciated.