InterviewSolution
Saved Bookmarks
| 1. |
Explain Container in Microservices. |
|
Answer» Containers are useful technologies for allocating and SHARING resources. It is considered the most effective and easiest method for managing microservice-based applications to DEVELOP and deploy them individually. Using DOCKER, you may also encapsulate a microservice ALONG with its dependencies in a CONTAINER image, which can then be used to roll on-demand instances of the microservice without any additional work. |
|