Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/silaskalmbach/docker_raspberrypi4_jupyterlab
Minimal Dockerfile to run JupyterLab on an Raspberry Pi 4 (arm64)
https://github.com/silaskalmbach/docker_raspberrypi4_jupyterlab
arm64 balena docker docker-compose ijavascript ipykernel ipython jupyterlab node-js raspberry-pi-4
Last synced: about 1 month ago
JSON representation
Minimal Dockerfile to run JupyterLab on an Raspberry Pi 4 (arm64)
- Host: GitHub
- URL: https://github.com/silaskalmbach/docker_raspberrypi4_jupyterlab
- Owner: silaskalmbach
- License: mit
- Created: 2022-02-14T15:02:39.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-07-02T08:17:47.000Z (over 2 years ago)
- Last Synced: 2024-10-13T11:21:59.994Z (2 months ago)
- Topics: arm64, balena, docker, docker-compose, ijavascript, ipykernel, ipython, jupyterlab, node-js, raspberry-pi-4
- Language: Dockerfile
- Homepage:
- Size: 5.86 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# JupyterLab for Raspberry Pi 4 (arm64, Docker)
Minimal Dockerfile to run JupyterLab on an Raspberry Pi 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:
```yaml
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:
```---
© Silas Kalmbach