Created
August 24, 2020 13:45
-
-
Save baiyongzhen/49f2214f6581f91f5a9f87b9def8aab0 to your computer and use it in GitHub Desktop.
This file contains 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/tensorflow-notebook | |
container_name: jupyter | |
user: root | |
environment: | |
- GRANT_SUDO=yes | |
- JUPYTER_ENABLE_LAB=yes | |
volumes: | |
- .:/home/jovyan/work | |
ports: | |
- "8888:8888" | |
entrypoint: | |
- start-notebook.sh | |
- --NotebookApp.token='' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment