in Docker by

What is Docker Compose?

a) A scripting language for Docker

b) A continuous integration tool for Docker

c) A tool for defining and running multi-container Docker applications

d) A Docker CLI plugin

1 Answer

0 votes
by

c) A tool for defining and running multi-container Docker applications

Explanation:

Docker Compose is a tool for defining and running multi-container Docker applications. With Compose, you define the services, networks, and volumes in a single docker-compose.yml file and then use docker-compose up to start the entire application stack.

...