Docker containers can be used in a variety of environments. In this workshop, we'll explore running containers on both a Linux and Windows.
We'll look into creating and running an image on windows
Windows
MacOS or brew cask install docker
Sign up for a new GitHub Account following the official guidelines if you don't have an account already: Signing up for a new GitHub Account
Sign up for a new Docker Hub account using the official sign up page
git clone < >
Try running the application
python app.py
Q: How'd it go?
cd container-workshop
docker build -t <dockerhub username>/container-workshop:0.1 .
# https://docs.docker.com/engine/reference/commandline/build/#usage
demo docker run workshop
vs docker run workshop -V
vs docker run workshop -m pip list
Once the image has been built, push it to your registry
docker images <imagename:tag> --format {{.ID}}
docker tag <image-id> <your-username/repository-name>:latest
docker login
docker push <your-username/repository-name>