Problem Statement
Which command lists all containers including stopped ones?
Explanation
The `docker ps -a` command shows all containers (running and stopped). This is a fundamental command for container management and diagnosing container states. :contentReference[oaicite:3]{index=3}
Code Solution
SolutionRead Only
docker ps -a
