What is the purpose of the 'docker ps' command?

0141

The docker ps command is used to list the running containers on your Docker host. It displays details about each running container, including the container ID, image name, command, creation time, status, ports, and container names. This command helps you monitor and manage your active containers effectively.

To see all containers, including stopped ones, you can use docker ps -a.

0 Comments

no data
Be the first to share your comment!