Created
March 24, 2020 06:03
-
-
Save varokas/73be7ebdec491b38008c656e0c795651 to your computer and use it in GitHub Desktop.
Jupyter in Docker
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' | |
services: | |
jupyter: | |
image: jupyter/scipy-notebook:latest | |
ports: | |
- "8888:8888" | |
- "4040:4040" | |
volumes: | |
- .:/home/jovyan | |
environment: | |
- JUPYTER_ENABLE_LAB=yes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment