-
-
Save vicmattos/3c560869c726b5da0a32a6b1d1ac7be1 to your computer and use it in GitHub Desktop.
Docker Compose for Jupyter Lab/Notebook (no token/password)
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
| 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