0 votes
in Continuous Deployment by

Q. What type of applications - Stateless or Stateful are more suitable for Docker Container?

1 Answer

0 votes
by

It is preferable to create Stateless application for Docker Container. We can create a container out of our application and take out the configurable state parameters from application. Now we can run same container in Production as well as QA environments with different parameters. This helps in reusing the same Image in different scenarios. Also a stateless application is much easier to scale with Docker Containers than a stateful application.

Related questions

0 votes
0 votes
asked Aug 15, 2020 by RShastri
0 votes
asked Aug 15, 2020 in Continuous Deployment by RShastri
...