Skip to main content

Posts

Showing posts from June, 2020

What is docker & vagrant and how to use it

Why Need Docker :  Lets suppose we are working in a large application which needs ,Drupal 8 ,PHP7.4, Mysql 8, Redis server, Mongodb,solar server, nodejs server etc. And at the same time I also give maintenace for another project on drupal 7, But it needs some old version of php, mysql,redis etc because it is old project developed 4 year before. So it's too complicated to run both the project in same machine just because of dependencies, Proublem 2 : Lets suppose in local we work on apache & sqlite & on production nginx & mysql, So may be some issue should be raised in production, To handing this type of situation Docker & vergant is much helpfull. How is Docker Different from Vagrant?: Docker :  Docker  is often described as "lightweight," because it simply provides containers within the host machine's Linux operating system. Docker containers hold an application's components, including binaries, libraries, and configurations, as we...