Complete the command to list all running Docker containers.
docker [1]The docker ps command lists all running containers.
Complete the command to list all containers, including stopped ones.
docker [1] -aThe docker ps -a command lists all containers, running or stopped.
Fix the error in the command to list all containers including stopped ones.
docker ps [1]The correct flag to list all containers is -a. Other options are invalid or misspelled.
Fill both blanks to complete the command that lists all containers showing their IDs.
docker ps [1] --format "{{.[2]"
Use -a to list all containers and ID to show container IDs in the format.
Fill all three blanks to create a command that lists all containers showing their names, status, and image.
docker ps [1] --format "{{.[2] - {{.[3] - {{.Image}}"
ID instead of Status for the third blank.-a flag and missing stopped containers.The -a flag lists all containers. The format placeholders Names and Status show container names and their current status.