Docker for Microservices: Reasons
In this lesson, we'll look at some reasons for using Docker for microservices.
We'll cover the following...
Chapter 2 defined microservices as separately deployable units. The separate deployment not only results in a decoupling at the architectural level, but also in regard to technology choice, robustness, security, and scalability.
OS processes for microservices
If microservices are supposed to have all these characteristics, the question arises as to how they can be implemented. Microservices must be scalable independently of each other. In the event ...