Complete the command to start services using the default Compose file.
docker-compose [1]The docker-compose up command starts the services defined in the default docker-compose.yml file.
Complete the command to use an override Compose file named docker-compose.override.yml.
docker-compose -f docker-compose.yml -f [1] upThe -f option specifies Compose files. The override file is usually named docker-compose.override.yml.
Fix the error in the command to apply multiple Compose files for override.
docker-compose -f [1] -f docker-compose.override.yml upThe base Compose file must be docker-compose.yml before the override file.
Fill both blanks to override the environment variable DEBUG to true in the override file.
services:
app:
[2]:
DEBUG: [1]The override file sets DEBUG to true under the environment key.
Fill all three blanks to correctly merge two Compose files where the override changes the image and adds a volume.
version: '3' services: web: image: [1] volumes: - [2] [3]
The override changes the image to nginx:stable, adds a volume mapping, and includes the ports key for port mapping.