DEV Community

Muhammad Habib Jawady
Muhammad Habib Jawady

Posted on

[docker series] What is docker?

docker logo
[Muhammad Habib Jawady / [29-11-17]

Hello there, this is Muhammad Habib Jawady and in this article I will be talking about a clean, safe and portable runtime environment called –you guessed it- docker.

This will be a hands-on series of articles with no perquisite skills whatsoever, I will cover the basics of docker, also basic terminology and commands. But first,

Why should you care?

In the 4 years since they launched:

docker in 2017
It is a container platform addressing every application across the hybrid cloud. It is an open source project licensed under Apache license 2.0 excluding worries about libraries and dependencies when packaging applications for deployment on linux-powered operating systems.

Why not virtualization?

A lot of people wonder why not long for virtualization instead. The most convenient answer is 'why not both'?! Actually, they can and they are both used in tune as most VPS providers such as AWS and Azure supply class type 1 hypervisor-based instances1(aka. bare-
hyperv types
metal full virtualization technologies such as 'Xen') and Docker can run on top a virtualized Linux instance and that's not the case for VMs especially that it is not yet supported in most major cloud computing platformsi

Containers allow the deployment of a project with no hypervisor to run on top of and help get rid of 'It works on my computer' issue by getting rid of the guest OS layer.

docker vs VMs
Docker releasing?

Docker is available in two editions: Community Edition (CE) and Enterprise Edition (EE). Each come with its features and updating and patching frequency, both available on multiple platforms, on cloud and on-premises.

Enterprise Edition** iii**
|
| --- | --- |
|

Stable update channel Edge update channel
gives you reliable updates every quarter gives you new features every month
  • A given Docker CE Stable release will receive patches and updates for one month after the next Docker CE Stable release.
  • A given Docker CE Edge release will not receive any patches or updates after a subsequent Docker CE Edge or Stable release. | A given Docker EE release will receive patches and updates for at least one year after it is released. |

For installation, please visit: https://docs.docker.com/engine/installation/

1 For more about virtualization techniques : https://securitywing.com/types-virtualization-technology/

i Nested virtualization support in Azure: https://azure.microsoft.com/en-us/blog/nested-virtualization-in-azure/

ii https://www.docker.com/community-edition/

iii https://www.docker.com/enterprise-edition/

Top comments (0)