arm32v7The container runs a Debian Buster with Python 3 and Jupyter Lab server. Find a detailed description on https://github.com/smirko-dev/machine-learning-rpi.
docker run -it -d -p 8881:8888 -e JUPYTER_PASSWORD='jupyter' -v ~/jupyter/notebooks:/root/notebooks smirko/machine-learning-rpi
docker-compose.yaml
version: '3'
services:
jupyter:
container_name: jupyterlab
restart: unless-stopped
build: .
environment:
- JUPYTER_PASSWORD=jupyter
ports:
- 8881:8888
volumes:
- ~/jupyter/notebooks:/root/notebooks
The Jupyter Lab server is now accessible <HOST IP>:8881.
Content type
Image
Digest
Size
1.1 GB
Last updated
almost 5 years ago
docker pull smirko/machine-learning-rpi