- Which of these statements is not true?
a) Docker Compose can run multi-service applications distributed on different services.
b) Docker Compose can run multi-container applications on a Docker host.
c) Docker Compose is a software application that is not installed with standard Docker packages.
d) All of the above are true.
- What can we do with docker-compose?
a) We can build all application images.
b) We can pull and push application component images.
c) We can run all application components at once.
d) All of the above.
- What will happen if we execute docker-compose up with a docker-compose file in which we have defined the frontend, backend, and database services? (Choose all of the correct statements out of the following options.)
a) Docker Compose will look for all the services' defined images and will pull them if they are not present in the current host.
b) Docker Compose will execute only images with the start key defined.
c) Docker Compose will run all containers...