Created
January 16, 2024 15:04
-
-
Save muhamad-ridwant-tech/27e849b479e4702fcc01f2430b9b46f5 to your computer and use it in GitHub Desktop.
Docker Compose for Jupyter Lab/Notebook (with custom password / token) | Jupyter Docker with 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='ridwan'" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment