kidig
rpi-jupyter-lab
Dockerfile

JupyterLab Docker image for your Raspberry PI

Last updated Jan 27, 2023
10
Stars
5
Forks
1
Issues
0
Stars/day
Attention Score
3
Language breakdown
Dockerfile 100.0%
Files click to expand
README

rpi-jupyter-lab

JupyterLab Server on Raspberry Pi. Read more about Jupyterlab

Your own Jupyter Notebook Server on Raspberry Pi.

Despite the fact that we adore Raspberry Pi and it is becoming more and more powerful, it is not intended to run large cpu intensive tasks. It will be slow and the best model only offers 1G of RAM.

For larger datasets, you either need to use incremental machine learning algorithms or build a cluster and run Spark on it. I am currently working on the latter which would be interesting.


This is a Dockerfile for building rpi-jupyter-lab. The image is built on a Raspberry Pi 3 running Hypriot OS](http://blog.hypriot.com/). It is a minimal notebook server with resin/rpi-raspbian:jessie as base image without additional packages.

Installing

Go to Hypriot OS and follow the steps to get the Raspberry Pi docker ready. Then, run the following:

docker pull kidig/rpi-jupyter-lab

Running in detached mode

docker run -dp 8888:8888 kidig/rpi-jupyter-lab

Now you can access your notebook at http://<docker host IP address>:8888

Configuration

If you would like to change some config, create your own jupyternotebookconfig.py on the docker host and run the following:

docker run -itp : -v :/root/.jupyter/jupyternotebookconfig.py kidig/rpi-jupyter-lab

This maps a local config file to the container.

The following command gives you a bash session in the running container so you could do more:

docker exec -it /bin/bash

🔗 More in this category

© 2026 GitRepoTrend · kidig/rpi-jupyter-lab · Updated daily from GitHub