InterviewSolution
Saved Bookmarks
| 1. |
How many containers you can run in docker and what are the factors influencing this limit? |
|
Answer» There is no clearly defined limit to the number of containers that can be RUN within docker. But it all DEPENDS on the limitations - more specifically hardware restrictions. The size of the app and the CPU resources available are 2 important factors influencing this limit. In CASE your application is not very BIG and you have ABUNDANT CPU resources, then we can run a huge number of containers. |
|