0 votes
in Docker by
What is the purpose of Docker-compose down?

A) To stop and remove 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 down is a command for stopping and removing a multi-container Docker application defined in a Docker Compose file. It stops all the services defined in the Compose file and removes any networks and volumes created by the Compose file.

...