DevOps Certification Training Course
- 181k Enrolled Learners
- Weekend/Weekday
- Live Class
I hope you haven’t missed the series of earlier DevOps Tutorial blogs. Go through the DevOps Tutorial blog series here. The unstoppable trend of Docker containers is growing, and organizations are looking for professionals possessing Docker Certification Training. Now this time, we will take you through Docker Tutorial starting with an overview of virtualization and containerization.
This Docker Tutorial blog will provide you with both conceptual and practical knowledge of Docker, a cutting-edge containerization technology.
In this blog, we will focus on the following topics:
Docker is gaining popularity and its usage is spreading like wildfire. The reason for Docker’s growing popularity is the extent to which it can be used in an IT organization. Very few tools out there have the functionality to find itself useful to both developers and as well as system administrators. Docker is one such tool that truly lives up to its promise of Build, Ship and Run.
In simple words, Docker is a software containerization platform, meaning you can build your application, package them along with their dependencies into a container and then these containers can be easily shipped to run on other machines.
For example: Lets consider a linux based application which has been written both in Ruby and Python. This application requires a specific version of linux, Ruby and Python. In order to avoid any version conflicts on user’s end, a linux docker container can be created with the required versions of Ruby and Python installed along with the application. Now the end users can use the application easily by running this container without worrying about the dependencies or any version conflicts.
These containers uses Containerization which can be considered as an evolved version of Virtualization. The same task can also be achieved using Virtual Machines, however it is not very efficient.
I generally receive a question at this point, i.e. what is the difference between Virtualization and Containerization? These two terms are very similar to each other. So, let me first tell you What is Virtualization?
Virtualization is the technique of importing a Guest operating system on top of a Host operating system. This technique was a revelation at the beginning because it allowed developers to run multiple operating systems in different virtual machines all running on the same host. This eliminated the need for extra hardware resource. The advantages of Virtual Machines or Virtualization are:
In the diagram on the right, you can see there is a host operating system on which there are 3 guest operating systems running which is nothing but the virtual machines.
As you know nothing is perfect, Virtualization also has some shortcomings. Running multiple Virtual Machines in the same host operating system leads to performance degradation. This is because of the guest OS running on top of the host OS, which will have its own kernel and set of libraries and dependencies. This takes up a large chunk of system resources, i.e. hard disk, processor and especially RAM.
Another problem with Virtual Machines which uses virtualization is that it takes almost a minute to boot-up. This is very critical in case of real-time applications.
Following are the disadvantages of Virtualization:
These drawbacks led to the emergence of a new technique called Containerization. Now let me tell you about Containerization.
Containerization is the technique of bringing virtualization to the operating system level. While Virtualization brings abstraction to the hardware, Containerization brings abstraction to the operating system. Do note that Containerization is also a type of Virtualization. Containerization is however more efficient because there is no guest OS here and utilizes a host’s operating system, share relevant libraries & resources as and when needed unlike virtual machines. Application specific binaries and libraries of containers run on the host kernel, which makes processing and execution very fast. Even booting-up a container takes only a fraction of a second. Because all the containers share, host operating system and holds only the application related binaries & libraries. They are lightweight and faster than Virtual Machines.
In the diagram on the right, you can see that there is a host operating system which is shared by all the containers. Containers only contain application specific libraries which are separate for each container and they are faster and do not waste any resources.
All these containers are handled by the containerization layer which is not native to the host operating system. Hence a software is needed, which can enable you to create & run containers on your host operating system.
Check out this Docker tutorial video for a deep understanding of Docker.
Now, let me take you through the introduction to Docker.
Docker is a containerization platform that packages your application and all its dependencies together in the form of Containers to ensure that your application works seamlessly in any environment.
As you can see in the diagram on the right, each application will run on a separate container and will have its own set of libraries and dependencies. This also ensures that there is process level isolation, meaning each application is independent of other applications, giving developers surety that they can build applications that will not interfere with one another.
As a developer, I can build a container which has different applications installed on it and give it to my QA team who will only need to run the container to replicate the developer environment.
Now, the QA team need not install all the dependent software and applications to test the code and this helps them save lots of time and energy. This also ensures that the working environment is consistent across all the individuals involved in the process, starting from development to deployment. The number of systems can be scaled up easily and the code can be deployed on them effortlessly.
Docker Tutorial – Features of Docker
Virtualization and Containerization both let you run multiple operating systems inside a host machine.
Virtualization deals with creating many operating systems in a single host machine. Containerization on the other hand will create multiple containers for every type of application as required.
Figure: What Is Big Data Analytics – Virtualization versus Containerization
As we can see from the image, the major difference is that there are multiple Guest Operating Systems in Virtualization which are absent in Containerization. The best part of Containerization is that it is very lightweight as compared to the heavy virtualization.
Now, let us install Docker.
I will be installing Docker on my Ubuntu 20.04.1 machine. You can also docker on windows and CentOS. You can follow the below videos to install Docker as per your desired environment.
Docker Installation | Install Docker | Docker Installation In CentOS | DevOps Tools | Edureka
Following are the steps to install Docker on Ubuntu:
There are certain packages you require in your system for installing Docker. Execute the below command to install those packages.
sudo apt-get install curl apt-transport-https ca-certificates software-properties-common
Now, import Dockers official GPG key to verify packages signature before installing them with apt-get. Run the below command on terminal:
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add
Now, add the Docker repository on your Ubuntu system which contains Docker packages including its dependencies, for that execute the below command:
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
Now you need to upgrade apt index and install Docker community edition, for that execute the below commands:
sudo apt-get update
sudo apt-get install docker-ce
Congratulations! You have successfully installed Docker. Also, check out a few commonly used Docker Commands.
Now let us see a few important Docker concepts.
Docker Hub is like GitHub for Docker Images. It is basically a cloud registry where you can find Docker Images uploaded by different communities, also you can develop your own image and upload on Docker Hub, but first, you need to create an account on DockerHub.
It consists of a Docker Engine which is a client-server application with three major components:
Refer this blog, to read more about Docker Architecture.
Finally in this Docker Tutorial blog I will be talking about Docker Compose.
Docker Compose is basically used to run multiple Docker Containers as a single server. Let me give you an example:
Suppose if I have an application which requires WordPress, Maria DB and PHP MyAdmin. I can create one file which would start both the containers as a service without the need to start each one separately. It is really useful especially if you have a microservice architecture.
Refer my blog on Docker Container to understand how to execute it practically.
With this, we come to an end to Docker Tutorial with an Introduction To Docker & Containerization.
Go through our next blog on Docker: What Is Docker and Docker Containers?
Now that you have understood what is DevOps, check out our DevOps Certification Training by Edureka, a trusted online learning company with a network of more than 250,000 satisfied learners spread across the globe. The Edureka DevOps Certification Training course helps learners gain expertise in various DevOps processes and tools such as Puppet, Jenkins, Nagios, Ansible, Chef, Saltstack and GIT for automating multiple steps in SDLC.
Got a question for us? Please mention it in the comments section and we will get back to you.
Course Name | Date | Details |
---|---|---|
Docker Certification Training Course | Class Starts on 7th December,2024 7th December SAT&SUN (Weekend Batch) | View Details |
edureka.co
Containerization much useful nowadays. A Docker container can now run in Zo/s mainframe in Linux environment. A light weight Docker container is portable and less maintenance.
Thanks for the clear explanation.
In virtualization , we can install different operating systems like
windows, ubuntu, on top of host OS, but in container is always only one
host os and we cannot run on different operating system?? Am i correct or wrong??
In virtualization , we can install different operating systems like windows, ubuntu, on top of host OS, but in container is always only one host os and we cannot run on different operating system??
Understood docker now
We are happy to have helped, Jeevan. Do check out our other blogs on the various tools used for DevOps, you will definitely find it interesting! :)