Why is it ideal to run a single process in a container ? Why running multiple process in a container is not preferred ?
Hi @dnpuneeth3
- Containers are cheap (in terms of resource use) for one
- You achieve separation. Do one job and do it well.
- If your process blows up, then the blast radius is limited to that container. You don’t risk bringing other parts of the application down.