Docker Commands
Docker Basics
docker --version: Check Docker version.docker info: Display system-wide information.
Images
docker images: List all images.docker pull <image>: Download an image from a registry.docker build -t <name>:<tag> .: Build an image from a Dockerfile in the current directory.docker rmi <image>: Remove an image.

