Sign inSign up

silaskalmbach/jupyterlab

By silaskalmbach

Updated over 4 years ago

Minimal Dockerfile to run JupyterLab on an Raspberry Pi 4 (arm64).

Image
0

10K+

silaskalmbach/jupyterlab repository overview

JupyterLab for Raspberry Pi 4 (arm64)

Minimal Dockerfile to run JupyterLab on an RaspberryPi 4 (arm64). Preinstalled IPython and Ijavascript kernel. Well suited to include them in IoT services like Balena.

Docker-Compose example, as it can also be found in the repository:
version: '2.1'

services:
  jupyterlab:
    image: silaskalmbach/jupyterlab:latest
    # build: 
    #   context: .
    #   dockerfile: Dockerfile
    restart: unless-stopped
    volumes:
      - jupytercache:/home/workdir
    environment:
      SERVICE_NAME: jupyterlab
      TZ: Europe/Berlin
      TOKEN: secure_token
      PASSWORD: secure_psw
      PORT: 8888
    ports:
      - 80:8888
    
volumes:
  jupytercache:

For more information see the Github repository.


© Silas Kalmbach

Tag summary

Content type

Image

Digest

Size

772.3 MB

Last updated

over 4 years ago

docker pull silaskalmbach/jupyterlab