Skip to content

Instantly share code, notes, and snippets.

@xsqian
xsqian / docker.text
Created March 15, 2018 04:28
docker image for the CarND
-- to pull the latest version of docker image from registry:
docker pull udacity/carnd-term1-starter-kit
-- to run the docker image (for Windows PowerShell):
docker run -it --rm -p 8888:8888 -v ${pwd}:/src udacity/carnd-term1-starter-kit test.ipynb
--or (for bash or Docker Quickstart Terminal)
docker run -it --rm -p 8888:8888 -v `pwd`:/src udacity/carnd-term1-starter-kit test.ipynb
-- to set terminal window title
echo -n -e "\033]0;Docker and Kubernetes\007"