culTest

    One of the 50 questions in this topic

    How much do you know about Docker?

    What command is used to list running containers?

    Answers

    docker list
    docker show
    docker psCorrect
    docker containers

    The docker ps command displays the running containers. To view all containers, including stopped ones, use docker ps -a. The name derives from the Unix 'ps' command that lists running processes.