<ul data-eligibleForWebStory="true">1. Check Docker version installed using 'docker --version'2. Display system-wide information with 'docker info'3. List all commands or get help on a specific one using 'docker help'4. Download an image from Docker Hub with 'docker pull <image>'5. List all local images with 'docker images'6. Build image from a Dockerfile in the current directory using 'docker build -t <name> .'7. Rename an image locally with 'docker tag <image> <new-name>'8. Remove an image with 'docker rmi <image>'9. Save an image to a .tar archive with 'docker save -o <file>.tar <image>'10. Load image from a .tar archive with 'docker load -i <file>.tar'11. Show layers of an image with 'docker history <image>'12. Run a container with 'docker run <image>'13. Run interactively with terminal access using 'docker run -it <image> /bin/bash'14. Run in detached (background) mode with 'docker run -d <image>'Eligible for Web Story: true