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:
-
docker run --rm -it -p 8888:8888 -v ~/Desktop/ gcr.io/kaggle-images/python /bin/bash
-
pip uinstall tensorflow (cause otherwise i get instructionset error when trying to start jupyter)
-
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.