Skip to content

Latest commit

 

History

History
34 lines (22 loc) · 3.08 KB

README.md

File metadata and controls

34 lines (22 loc) · 3.08 KB

Docker images for Jupyter kernels

Custom lightweight Jupyter images for your taste!

I use Jupyter images for almost everything now, but one reason is learning languages or experimenting.

This repo contains the dockerfiles for custom learning base images for certain jupyter kernels:

To get any of these images just docker pull <image name> and run it with:

docker run -p 8888:8888 <image name>

If you want to delete the container after done (because why should you keep it?)

docker run -p 8888:8888 --rm <image name>

And finally, the notebooks are saved in a local volume under /notebooks and you can mount that directory to a local directory, for example, if you want mount and save your notebooks in the experiments directory in your local path

docker run 8888:8888 --rm -v $(pwd)/experiments:/notebooks <image name>

Enjoy!