The jupyter team now has official images for arm64
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.
docker pull jiwidi/jupyter-lab-rpi:latest
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
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!