Skip to content

Instantly share code, notes, and snippets.

@hightemp
Forked from ronaldsuwandi/docker-compose.yml
Created January 21, 2023 05:38
Show Gist options
  • Save hightemp/2cae4aacc34882ecd1ca5f64d977006d to your computer and use it in GitHub Desktop.
Save hightemp/2cae4aacc34882ecd1ca5f64d977006d 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