install docker

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 : 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

Getting started with Docker: Practical Introduction

Reading Time: 3 minutes What is docker Docker is a is a software containerization platform which packages our software application and all its dependencies into a single package in form of containers. It helps to run our application seamlessly in any environment such as development, testing or production. Docker assures that we don’t need to install dependencies again and again. it saves lots of time and energy. It also 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