/docker-jupyter

Primary LanguageJupyter NotebookApache License 2.0Apache-2.0

docker-jupyter

  • generate docker image

     docker build . -t sunylab/jupyter:1.0 
    
  • start docker jupyter

    docker run --rm -ti --name jupyter -p 8188:8188 -v `pwd`/study:/root/study sunylab/jupyter:1.0 
    
  • open in browser

     http://localhost:8188
    
  • exit using control-c or (execcuting stop command in another command line window )

    docker stop jupyter