I believe many of those interested in studying DL heard of this course:
https://www.udacity.com/course/deep-learning--ud730
I am taking the course now and would
AFTER LOCAL MACHINE REBOOT
To start learning environment after computer reboot, create .bat file (I call it udacity-tf-start.bat) with the following content:
call docker-machine start vdocker
FOR /f "tokens=*" %%i IN ('docker-machine env --shell cmd vdocker') DO %%i
call docker start -ai tensorflow-udacity
Important! %% is a kind of escaping and you only need it inside a BAT file. In case you are running the same set of commands via command-line, you should use:
FOR /f "tokens=*" %i IN ('docker-machine env --shell cmd vdocker') DO %i