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

A) To build Docker images for services 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 build is a command for building Docker images for services defined in a Docker Compose file. It allows developers to build images for all the services in the Compose file or for a single service.

...