0 votes
in Docker by

What is the purpose of What is the purpose of Docker-compose ps?

A) To view the status of containers in a multi-container Docker application defined in a Docker Compose file

B) To manage Docker images

C) To manage Docker containers

D) To manage Docker networks

1 Answer

0 votes
by

Answer: A

Explanation: Docker-compose ps is a command for viewing the status of containers in a multi-container Docker application defined in a Docker Compose file. It shows which containers are running, stopped, or exited, and provides information about their status

...