stateful or stateless - which application are more useful for docker containers

0 votes
Amongst stateless and stateful, which application is more suitable for docker containers?
Jul 24, 2019 in Docker by Aysha
2,352 views

1 answer to this question.

0 votes
It is preferable to create a Stateless application for Docker Container. We can create a container out of our application and take out the configurable state parameters from the application. Now we can run the 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.
answered Jul 24, 2019 by Yamini

Related Questions In Docker

0 votes
1 answer

Which is good monitoring tool for checking docker container health end to end or any shell scripts for it?

You can try using these commands: docker ps curl - ...READ MORE

answered Feb 3, 2020 in Docker by anonymous
• 6,260 points
1,245 views
0 votes
1 answer

Which are some best Docker tutorials for beginners?

Hi@akhtar As a beginner, I have gone through some youtube ...READ MORE

answered May 14, 2020 in Docker by MD
• 95,440 points
569 views
0 votes
1 answer

Docker : multiples linked containers for each customers

Using Docker (specifically Docker Compose) linking containers ...READ MORE

answered Jul 11, 2018 in Docker by Kalgi
• 2,680 points
458 views
0 votes
1 answer

Should I use Vagrant or Docker for creating an isolated environment?

If your purpose is the isolation, I ...READ MORE

answered Jul 18, 2018 in Docker by Kalgi
• 2,680 points
849 views
+2 votes
1 answer