How to Dockerize JupyterLab
A full example of this repository can be found on my Github here. I often find myself exploring data using Python, Jupyter Lab, Pandas and various graphing programs. This has caused me to want to have a light weight, easy to use, and portable approach to standing up these tools. In the past, I have found myself using tools like pyenv to install a desired version of python for each project. While there is nothing wrong with this approach, I generally prefer to have my project packaged up with Docker, and Docker Compose. Therefore, let this blog post show you how I’ve achieved just that. ...