Docker Explained – An Introductory Guide to Docker
Welcome to the wide world of Docker.
Join the DZone community and get the full member experience.
Join For FreeDocker has gained immense popularity in this fast-growing IT world. Organizations are continuously adopting Docker in their production environment. I take this opportunity to explain Docker in the most simple way. In this blog, the following Docker concepts will be covered:
- History Before Containerization
- Reasons to use containers
- What is Docker?
- Dockerfile, Images, and Containers
- Docker Compose and Docker Swarm
- Hands-On
Since Docker is a containerization platform before I tell you about it, it’s important that you understand the history behind containerization.
Docker Explained: History Before Containerization
Before containerization came into the picture, the leading way to isolate, organize applications and their dependencies was to place each and every application in its own virtual machine. These machines run multiple applications on the same physical hardware, and this process is nothing but Virtualization.
But virtualization had few drawbacks, including that virtual machines were bulky in size, running multiple virtual machines lead to unstable performance, the boot-up process would usually take a long time and VM’s would not solve the problems like portability, software updates, or continuous integration and continuous delivery.
These drawbacks led to the emergence of a new technique called containerization.
Containerization
Containerization is a type of virtualization which brings virtualization to the operating system level. While virtualization brings abstraction to the hardware, containerization brings abstraction to the operating system.
Moving ahead, it’s the time that you understand the reasons to use containers.
Reasons to Use Containers
Here are the reasons to use containers:
- Containers have no guest OS and use the host’s operating system. So, they share relevant libraries and resources as and when needed.
- Processing and execution of applications are very fast since applications specific binaries and libraries of containers run on the host kernel.
- Booting up a container takes only a fraction of a second, and also containers are lightweight and faster than Virtual Machines.
Now, that you have understood what containerization is and the reasons to use containers, it’s the time you understand What is Docker?
Docker Explained: What Is Docker?
Docker is a platform that packages an application and all its dependencies together in the form of containers. This containerization aspect of Docker ensures that the application works in any environment.
As you can see in the diagram, each and every application runs on separate containers and has its own set of dependencies and libraries. This makes sure that each application is independent of other applications, giving developers reassurance that they can build applications that will not interfere with one another.
So a developer can build a container having different applications installed on it and give it to the QA team. Then the QA team would only need to run the container to replicate the developer’s environment.
Dockerfile, Images, and Containers
Dockerfile, Docker images, and Docker containers are three important terms that you need to understand while using Docker.
As you can see in the above diagram when the Dockerfile is built, it becomes a Docker image, and when we run the Docker image then it finally becomes a Docker container.
Dockerfile: A Dockerfile is a text document that contains all the commands that a user can call on the command line to assemble an image. So, Docker can build images automatically by reading the instructions from a Dockerfile. You can use
docker build
to create an automated build to execute several command-line instructions in succession.Docker Image: In layman's terms, a Docker image can be compared to a template that is used to create Docker containers. So, these read-only templates are the building blocks of a Docker container. You can use
docker run
to run the image and create a container. Docker images are stored in the Docker Registry. It can be either a user’s local repository or a public repository like a Dockerhub which allows multiple users to collaborate in building an application.Docker Container: Docker container is a running instance of a Docker image as they hold the entire package needed to run the application. So, these are basically the ready applications created from Docker images, which is the ultimate utility of Docker.
Docker Explained: Docker Compose and Docker Swarm
Docker Compose is a YAML file that contains details about the services, networks, and volumes for setting up the Docker application. So, you can use Docker Compose to create separate containers, host them, and get them to communicate with each other. Each container will expose a port for communicating with other containers.
Docker Swarm is a technique to create and maintain a cluster of Docker engines. The Docker engines can be hosted on different nodes, and these nodes, which are in remote locations, form a cluster when connected in swarm mode.
With this, we come to an end to the theory part of this Docker Explained blog, wherein you must have understood all the basic terminologies.
Docker Explained: Hands-On
Follow the below steps to create a Dockerfile, image, and container.
Step 1: First you have to install Docker.
Step 2: Once Docker is installed, use the below command to check the Docker version.
docker -v
Step 3: Now create a folder in which you can create a Dockerfile and change the current working directory to that folder.
mkdir images
cd images
Step 4.1: Now create a Dockerfile by using an editor. In this case, I have used the nano editor.
nano Dockerfile
Step 4.2: After you open a Dockerfile, you have to write the Dockerfile as follows.
FROM ubuntu:latest
MAINTAINER Sahiti (email@domain.com)
RUN apt-get update
RUN apt-get install -y nginx
ENTRYPOINT ["/usr/sbin/nginx","-g","daemon off;"]
EXPOSE 80
-
FROM
: Specifies the image that has to be downloaded -
MAINTAINER
: Metadata of the owner who owns the image -
RUN
: Specifies the commands to be executed -
ENTRYPOINT
: Specifies the command which will be executed first -
EXPOSE
: Specifies the port on which the container is exposed
Step 4.3: Once you are done with that, just save the file.
Step 5: Build the Dockerfile using the below command.
docker build
** “.” is used to build the Dockerfile in the present folder **
Step 6: Once the above command has been executed the respective Docker image will be created. To check whether Docker Image is created or not, use the following command.
docker images
Step 7: Now to create a container based on this image, you have to run the following command:
docker run -it -p port_number -d image_id
Where -it
is to make sure the container is interactive, -p
is for port forwarding, and -d
to run the daemon in the background.
Step 8: Now you can check the created container by using the following command:
docker ps
With this we come to the end of this article, I hope you enjoyed this blog.
Further Reading
Published at DZone with permission of Sahiti Kappagantula, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments