Skip to content

Commit

Permalink
Merge pull request Yorko#2 from vchulski/patch-2
Browse files Browse the repository at this point in the history
Update run_jupyter.cmd
  • Loading branch information
datamove authored Feb 6, 2019
2 parents 6455276 + b95b0da commit d919715
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run_jupyter.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ FOR /F "tokens=* USEBACKQ" %%a in (`"docker-machine ip default"`) DO SET JUP_IP=

IF DEFINED DOCKER_TOOLBOX_INSTALL_PATH (

docker run -it --rm -u 1000:1000 -v /c/Users/%username%/mlcourse.ai:/notebooks -w /notebooks -e HOME=/notebooks/home -p 4545:8888 %IMAGE% jupyter-notebook --NotebookApp.ip=0.0.0.0 --NotebookApp.password_required=False --NotebookApp.token='' --NotebookApp.custom_display_url=http://%JUP_IP%:4545
docker run -it -d --name mlcourse_ai --rm -u 1000:1000 -v /c/Users/%username%/mlcourse.ai:/notebooks -w /notebooks -e HOME=/notebooks/home -p 4545:8888 %IMAGE% jupyter-notebook --NotebookApp.ip=0.0.0.0 --NotebookApp.password_required=False --NotebookApp.token='' --NotebookApp.custom_display_url=http://%JUP_IP%:4545 & explorer "http://%JUP_IP%:4545" & docker attach mlcourse_ai

) ELSE (

Expand Down

0 comments on commit d919715

Please sign in to comment.