Recently I had a chance to learn about Docker and also played around with it for a while. It's amazing technology, which is here to take away all the pain of deployment. In the current world of web hosting services, it's always a pain to move from one host to another. The major reason is that you will have to configure the new hosting server completely the same way right from … [Read more...] about How To Dockerize A Multi-Container App From Scratch
deployment
Simple Github Push To Deploy Tutorial
If you are using github as your project's source code repository, not matter whether its open source or private, it's good idea to have the automated deployment mechanism setup so that whenever someone from your team push to the repository, your web app get built/updated automatically to the latest changes. There are several continuous integration system like travis, jenkins … [Read more...] about Simple Github Push To Deploy Tutorial
Automated Deployment With GIT Post Receive Hook
There are several deployment/ci tools available on the web. However, I was looking for a quick way without going through those process to deploy demo site for this blog on a VPS. For this simple purpose, git hook seemed a legit idea. Thus I went for this adventure of simple automated deployment with git hook. There are several articles showing the process in various steps. … [Read more...] about Automated Deployment With GIT Post Receive Hook