docker run -it --rm -p 8888:8888 miykael/nipype_tutorial jupyter notebook
The output is as follows:
[I 10:25:05.104 NotebookApp] [nb_conda_kernels] enabled, 2 kernels found--
You received this message because you are subscribed to the Google Groups "Project Jupyter" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jupyter+u...@googlegroups.com.
To post to this group, send email to jup...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jupyter/a68e64ca-0966-4efe-8471-54e14ec82570%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
docker run -it --rm -p 8888:8888 miykael/nipype_tutorial jupyter notebook --NotebookApp.ip=0.0.0.0 --NotebookApp.port=8888
But the outcome is the same, i'm stuck with the jupyter token/password page and entering token doesn't work.
Best wishes
John
You received this message because you are subscribed to a topic in the Google Groups "Project Jupyter" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/jupyter/y0FK1n4LRVs/unsubscribe.
To unsubscribe from this group and all its topics, send an email to jupyter+u...@googlegroups.com.
To post to this group, send email to jup...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jupyter/CAGU5speuQ0uECyycp8YEUJxUR-YKroQkKxaMNiLtr8_kV0SWVg%40mail.gmail.com.
To unsubscribe from this group and stop receiving emails from it, send an email to jupyter+unsubscribe@googlegroups.com.
To post to this group, send email to jup...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jupyter/a68e64ca-0966-4efe-8471-54e14ec82570%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--Sent from my Mobile device--
You received this message because you are subscribed to a topic in the Google Groups "Project Jupyter" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/jupyter/y0FK1n4LRVs/unsubscribe.
To unsubscribe from this group and all its topics, send an email to jupyter+unsubscribe@googlegroups.com.
Solved.
I was digging around on various forums looking into the new error i was receiving. I saw one post suggesting ‘experimental features’ from Docker settings > Daemon, should be turned off. In hope rather than expectation, I turned experimental features ‘on’, as my setting was already off. Miraculously, this allows me to run the image and jupyter notebook. No idea why.
The url i had to copy onto my browser went as follows:
http://(572887568e37 or 127.0.0.1):8888/?token=a069361e348d97b30b42db38dcaa725b0ff1ff3cf9b21a68
where I edited it in the browser and selected the 127.0.0.1 i/p
i.e. ran the following in the browser…
http://127.0.0.1:8888/?token=a069361e348d97b30b42db38dcaa725b0ff1ff3cf9b21a68
Thanks for the help
John