Skip to content

Instantly share code, notes, and snippets.

@mvandermeulen
Forked from ronaldsuwandi/docker-compose.yml
Created December 31, 2023 15:25
Show Gist options
  • Save mvandermeulen/76822cfd606f0c7e8e2c7565acd0a979 to your computer and use it in GitHub Desktop.
Save mvandermeulen/76822cfd606f0c7e8e2c7565acd0a979 to your computer and use it in GitHub Desktop.
Docker Compose for Jupyter Lab/Notebook (no token/password)
version: "3.9"
services:
jupyter:
image: jupyter/scipy-notebook
ports:
- "8888:8888"
volumes:
- ./notebooks:/home/jovyan/
environment:
JUPYTER_ENABLE_LAB: "yes"
command: "start-notebook.sh --NotebookApp.token='' --NotebookApp.password=''"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment