19
328
1K
276K
1K
Download Image
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.