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

A) To start 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 up is a command for starting a multi-container Docker application defined in a Docker Compose file. It automatically starts all the services defined in the Compose file and creates any necessary networks and volumes.

...