1/20 🐳 Check Docker version: docker --version 📜 Explanation: Check Docker version installed on your system.
2/20 🐳 Download Docker image: docker pull <image_name> 📜 Explanation: Download a Docker image from a container registry.
3/20 🐳 List local Docker images: docker image ls 📜 Explanation: List all Docker images on your local machine.
4/20 🐳 List running containers: docker container ls 📜 Explanation: Display running containers with their details.
5/20 🐳 Start interactive container shell: docker container run -it <image_name> bash 📜 Explanation: Start a new container and open an interactive shell.
6/20 🐳 Stop a container: docker container stop <container_id> 📜 Explanation: Stop a running container by specifying its ID.
7/20 🐳 Remove a container: docker image rm <image_name> 📜 Explanation: Remove a stopped container by specifying its ID.
8/20 🐳 Delete a Docker image: docker rmi <image_name> 📜 Explanation: Delete a Docker image from your local repository.
9/20 🐳 Build Docker image from Dockerfile: docker image build -t <image_name> <path_to_dockerfile> 📜 Explanation: Build a new Docker image from a Dockerfile.