Version
docker --version
List Installed Images
docker images
Search for images available in docker hub
docker search hello-world
Install images from docker hub
docker pull hello-world # Install a previous version docker pull centos:centos6 # Install a container with an interactive program inside docker pull docker/whalesay
What goes into the image?
docker inspect hello-world