Reputation: 3525
I want to use ipython kernel inside a docker container from Jupyter Notebook running in my host machine.
I know I can use the kernel by installing Jupyter into the container, but it is not I want to do. That's because I'm using some extensions of Jupyter Notebook (e.g. vim), and I want to use them when I use the kernel inside docker container.
What should I do?
Upvotes: 6
Views: 2682
Reputation: 2174
Have a look at this GitHub repo, there you can find a complete example of how to run IPython inside Docker.
Upvotes: 4