This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# 🧠 Minimal Jupyter Notebook runner using Docker | |
# This script mounts a local folder into a Jupyter container. | |
# - If a directory path is passed as the first argument, it is used. | |
# - Otherwise, the current working directory is mounted. | |
NB_PATH="${1:-$PWD}" # Feel free to hardcode your PATH and copy paste to the console |