A customized Jupyter Server Spark Docker image packed with everything you need.
- Everything from jupyter/all-spark-notebook
- More packages:
docker run -p 8888:8888 -p 4040:4040 franzdiebold/datascience-ultimate-server
The following endpoints / web apps will be available:
- Jupyter Server: http://localhost:8888/
- Spark Web UI: http://localhost:4040/
Usage in JetBrains DataSpell
To connect to a Jupyter server in JetBrains DataSpell:
- Click the "Add Jupyter Connection" icon on the toolbar of the Workspace tool window.
- Select the connection type "Connect to Jupyter server using URL", add the URL "http://127.0.0.1:8888/?token=" to "Server URL" and click "Add".
In your .zshrc
/ .bashrc
file add:
alias jupyter-server='docker run --rm -p 8888:8888 -p 4040:4040 -v "${PWD}":/home/jovyan franzdiebold/datascience-ultimate-server:latest'
💪 For an even better integration into your daily Data Science routine, check out the dockerize-datascience repo.
make build-server-arm # linux/arm64 architecture
make build-server-amd # linux/amd64 architecture