Manage Images
- 
docker image pull <image name>- download an image from Docker Hub.
- 
docker image ls- list all local images
- 
docker image build -t <image name> .- build an image with a tag
- 
docker image push <image name>- publish an image to Docker Hub
- 
docker image tag <image id> <tag name>- tag an image - either alias an existing image or apply a :tag to one
