Search code examples
dockerboot2docker

Understanding docker from a layman point of view


I am just one day old to docker , so it is relatively very new to me .

I read the docker.io but could not get the answers to few basic questions . Here is what it is:

  1. Docker is basically a tool which allows you to make use of the images and spin up your own customised images by installing softwares so that you can use to create the VMs using that .

Is this what docker is all about from a 10000 ft bird's eye piont of view?

2 . What exactly is the meaning of a container ? Is it synonymn for image?

3 . I remember reading somewhere that it allows you to deploy applications. Is this correct ? In other words will it behave like IIS for deploying the .net applications?

Please answer my questions above , so that I can understand it better and take it forward.


Solution

  • 1) What docker is all about from a 10000 ft bird's eye point of view?

    From the website: Docker is an open-source engine that automates the deployment of any application as a lightweight, portable, self-sufficient container that will run virtually anywhere.

    Drill down a little bit more and a thorough explanation of the what/why docker addresses:

    Further depth can be found in the technology documentation:

    2) What exactly is the meaning of a container ? Is it synonymn for image?

    An image is the set of layers that are built up and can be moved around. Images are read-only.

    A container is an active (or inactive if exited) stateful instantiation of an image.

    See also: In Docker, what's the difference between a container and an image?

    3)I remember reading somewhere that it allows you to deploy applications. Is this correct ? In other words will it behave like IIS for deploying the .net applications?

    Yes, Docker can be used to deploy applications. You can deploy single components of the application stack or multiple components within a container. It depends on the use case. See the First steps with Docker page here: http://docs.docker.io/use/basics/

    See also: