Hacker News new | ask | show | jobs
by mafro 1819 days ago
Do tell about where you would need a million docker images for a CICD pipeline.. It's either many apps, or some very complicated pipelines
2 comments

We have a suite of about two thousand integration tests and we run each test in its own docker container for isolation purposes. Multiply by 500 jobs a day and you get to a million containers.
Or many builds of the same app. Think compatibility matrix testing: take one suite of tests and run them against every one of hundreds of permutations of versions of their dependencies, one container each.

Not GP, just hypothesizing. This is what Travis matrixes do, for example.