docker introduction

Docker-Why Developers Love Docker? Just Have A Look!

Reading Time: 5 minutes It is basically a tool which enables developers to create,deploy and to run any application easily as light-weight container ,which could run virtually anywhere.The main purpose of Docker is to easily develop applications. It further ship them into containers so that they can then be deployed anywhere. This feature is very helpful to developers. And most importantly it is an open source. This means that anyone can contribute Continue Reading

Docker Architecture

Reading Time: 3 minutes In my previous blog, we had a little glimpse of what Docker is. It’s time to take one step ahead of that. Let’s understand more about Docker through its architecture. A Quick recall WHAT? Docker is a tool designed to make it easier to create, deploy, and run applications by using containers. Containers allow a developer to package up an application with all of the Continue Reading

Docker : linking and working with multiple containers

Reading Time: 2 minutes Prerequisites Docker installation from here. Create an account on Docker Hub In my previous blog we had a quick overview of Docker technology. I suggest you to have a look at my previous blog for better understanding. Our application can have multiple services running in different containers. So In this blog we will know how to link multiple containers. Here we will take an example of mysql and Continue Reading

How to install and use Docker: Getting started

Reading Time: 3 minutes What is Docker? Docker is the popular open source container engine to run distributed application. Docker Containers (Layer of abstraction): It allows a developer to package up an application and all of its part means the stack on which it runs, dependency that are associated with it into a standardized unit for software development. The application has all which it needs to run inside the Continue Reading