Skip to content

Latest commit

 

History

History
43 lines (32 loc) · 1.51 KB

README.md

File metadata and controls

43 lines (32 loc) · 1.51 KB

DISCLAIMER:

The jupyter team now has official images for arm64

jupyter-lab-docker-rpi

A Docker image to run jupyterlab on your raspberry pi. Tested on rpi3b and rpi4 with raspian.

To run this docker image make sure you have Docker installed in your raspberry pi. You can find a tutorial here


This is a Dockerfile for building rpi-jupyter-lab. The image is built on a Raspberry Pi 3B running raspian.

The dockerfile starts a minimal notebook server with resin/rpi-raspbian:jessie as base image without additional packages.

Installing

docker pull jiwidi/jupyter-lab-rpi:latest

Running the image

docker run -dp 8888:8888 jiwidi/jupyter-lab-rpi:latest

The jupyter lab server should be accesible at http://<docker host IP address>:8888 and protected with a password jns

Configuration

If you would like to change some config you can access bash in your container by:

#Get your container id by running docker ps
docker exec -it <container id> /bin/bash 

And then execute:

jupyter notebook password

You can also edit the config file /root/.jupyter/jupyter_notebook_config.py with any config you like!

Useful repos for running jupyterlab on rpis

https://github.com/kleinee/jns