Solve the puzzle
Common Docker Commands
Check real-time resource usage of a specific container
docker stats <container_name>1
Enter a specific container
docker exec -it <container_name> /bin/bash1
Clean Docker cache, remove unused resources including images, containers, networks, etc.
docker system prune -a1
Uninstall all Docker images and containers
docker rm -f $(docker ps -aq); docker rmi $(docker images -aq)1
View logs of a specific container
docker logs <container_name_or_ID>1
View overall disk usage of Docker
docker system df1
List all containers
docker ps -a1
List all images
docker images1
Remove a specific container
docker rm -f <container_name_or_ID>1
Remove a specific image
docker rmi <image_name_or_ID>1
