Suppose I have a ubuntu machine(server).
And 3 team members, they all are working on their separate applications :
1. PHP
2. Node
3. Java
Now when they push their code, I need to be able to run their code so that they can test it. Moreover, the app must be kept running and their environment should be different.
I was thinking of creating docker containers for each of them, but that takes about 350MB of space, which not seems to be good if the team grows to 100s of people.
Please suggest me something or I need to stick with docker container?
Thanks