For the 'docker-compose.yml' fragment below
scala:
build: ./scala
expose:
- 40000-50000
ports:
- 9000:9000
- 4040:4040
links:
- mongo
volumes:
- ../../:/root/cardio
- ~/.ivy2:/root/.ivy2
- ~/.sbt:/root/.sbt
stdin_open: true
mongo:
image: mongo
volumes_from:
- data
ports:
- "27017:27017"
Choose the most correct statement to describe the 'links' block
Correct Answer: Allows the container to be linked with ALL instances of the mongo service , but each with different alias
Explanation:
Note: This Question is unanswered, help us to find answer for this one
More Docker MCQ Questions