Answers for "Which of the following Docker commands returns the last created container details?"

3

docker ps only show names

docker ps --format '{{.Names}}'
Posted by: Guest on August-27-2020
2

list stopped containers

docker ps --filter "status=exited"
Posted by: Guest on May-27-2020

Code answers related to "Which of the following Docker commands returns the last created container details?"

Browse Popular Code Answers by Language