Solves Dependency Conflicts
In this lesson, you will learn how containers solve dependency conflicts between similar applications on the same server.
A typical web application looks something like the following:
The application is made of files served by an HTTP server (Apache here, but it could be Kestrel, IIS, NGINX, …), a runtime (PHP 5.6 here) and a development framework (Wordpress 4.9 here).
Without containers, the dependencies and files are all placed together on a server. ...