Complete the command to list all running Docker containers.
docker [1]The docker ps command shows all running containers.
Complete the command to check the logs of a container named 'webapp'.
docker logs [1]The docker logs webapp command shows the logs of the container named 'webapp'.
Fix the error in the command to monitor container stats continuously.
docker [1]The docker stats command shows real-time resource usage of containers.
Fill both blanks to create a command that filters running containers by name 'db'.
docker ps --filter [1]=[2]
The docker ps --filter name=db command lists containers with 'db' in their name.
Fill all three blanks to create a command that shows logs of container 'api' with timestamps and follows output.
docker logs [1] [2] [3]
The command docker logs api --timestamps --follow shows live logs with timestamps for the 'api' container.