Last active
April 18, 2022 01:52
-
-
Save srhopkins/f6eddd7761fefee9a49bfa6cfba73642 to your computer and use it in GitHub Desktop.
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
# alias jupyter='curl -s https://gist.githubusercontent.com/srhopkins/f6eddd7761fefee9a49bfa6cfba73642/raw/3adebd63093637ba0bfd56a0c466ab04ebdc2da2/jupyter.yaml | docker compose -f - up' | |
version: "3.2" | |
services: | |
jupyter: | |
image: jupyter/datascience-notebook | |
volumes: | |
- ${HOME}/.ssh:/home/jovyan/.ssh | |
- ${HOME}/.aws:/home/jovyan/.aws | |
- ${HOME}/.kube/config:/home/jovyan/.kube/config | |
- ${PWD}:/home/jovyan | |
working_dir: /home/jovyan | |
ports: | |
- 8888:8888 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment