Is one container required for each microservice?

Hello,
The following website is written with a number of microservices in Node.js:

Should a container be run for each of those projects?

Thank you

Usually one container per app/service. That way you can have different dependencies and you can update them independently.

1 Like