Exploring Docker

Sololearn
Sololearn
Published in
5 min readJun 13, 2022
Docker

So, you’ve completed your first few coding classes, gotten a few coding certificates, and feel like you are headed toward building your first app or piece of software. That’s exciting! But as experienced programmers know, simply knowing how to write code is only one (key) aspect of actually getting an idea from brainstorming to a public-facing release ready for users. Finding a tool that can let you integrate the different parts of your app, organize it, and then push it out to users is another key part of the process.

This is where Docker comes in. In basic terms, Docker is a software platform that streamlines the process of building, running, managing and distributing applications. It does so by virtualizing the operating system of the computer on which it is installed and running, thus allowing multiple concurrent processes (say, three different Python-based applications that all need to run together even with different versions and elements) to operate at the same time.

So how can you use Docker to help take your project from simple lines of code into a fully functioning application? What kind of benefits does Docker afford programmers, especially in comparison to other similar software virtualization tools? Let’s start by exploring Docker, including its structure and functionality, so you can start planning on integrating this tool into your coding plans.

How Does Docker Work?

First, the basics — Docker was originally created and released in 2013, and was built using the ever more popular Go (or Golang) programming language. Like most popular programming tools, Docker was designed to solve the problem we noted above — as people began to develop more complex applications (requiring different individual but connected pieces), a solution that could integrate those different pieces was essential to allow for more advanced development. Here’s how Docker solved that problem.

When Docker is installed and operating on a particular machine, that machine becomes known as a Docker Host, or Host in simpler terms. As such, whenever you plan to actually deploy an application on the host, Docker creates a logical entity on the machine to host that application. In Docker terminology, this logical entity is known as a Container, or Docker Container to be more specific.

A Docker Container doesn’t actually have any operating system installed and running on it. However, what it does have is a virtual copy of the process table, network interface(s), and the file system mount point(s). These are inherited from the operating system of the host on which the container is hosted and running.

This enables each container to be isolated from the other present on the same host. As such, Docker can support multiple containers with different application requirements and dependencies running on the same host — in the case they have the same operating system requirements. Put another way, Docker can virtualize the operating system of the host on which it is installed and running, rather than virtualizing the actual hardware components.

Now why is Docker better at solving this problem than some similar competing tools who attempt the same function? Let’s look at some of the specific advantages and disadvantages of using Docker.

Advantages Of Using Docker

Here are the main benefits that Docker affords users over other similar tools:

  • Docker can support multiple applications with various application requirements and dependencies to be hosted simultaneously using the same host, as long as those applications have the same operating system requirements.
  • Docker allows for a large number of applications to be hosted on the same host, since containers are usually few megabytes in size and consume very little disk space. This offers storage optimization that brings with it a ton of benefits — whenever you can save space when building and operating an application, the better!
  • Each individual container does not have a unique operating system installed on it. Subsequently, Docker consumes very little memory when compared to a virtual machine (which would require a complete operating system installed and running to function). As a result, bootup time is reduced to just a few seconds, versus the couple of minutes that is required to boot up a virtual machine.
  • Since Docker is less demanding when it comes to the hardware required to run it, ancillary costs (for storage and memory, for example) are much lower, which makes it very useful for bootstrapping startups on a limited budget.

Disadvantages Of Using Docker

  • The main disadvantage to using Docker is that applications that include different operating system requirements cannot be hosted together on the same Docker Host. If, for example, you have a few Linux-based applications but also a Windows-based application, the various applications that require a Linux-based operating system can be hosted on a single Docker Host. However, the application that requires a Windows-based operating system needs to be hosted using a different Docker Host. This can raise complications for software that requires applications using multiple operating systems — but that’s not common enough to derail the usefulness of the tool.

What You Can Use Docker For

Fast And Reliable Delivery Of Applications You build

As we noted above, Docker is most useful for streamlining the development process by allowing developers to work in standardized environments using local containers which provide various required applications and services. Containers are optimal for continuous integration and continuous delivery (CI/CD) workflows. What does this look like in practice? Here’s an example:

  • A group of developers write code locally and then share their work with the rest of the team using Docker containers.
  • Developers can then use Docker to push their applications into a shared test environment, and then execute automated and manual tests.
  • If and when developers discover bugs, they can fix them in the development environment and redeploy them to the test environment for testing and validation.
  • When testing is finished, getting the update pushed to the customer requires simply pushing the updated image to the production environment.

Responsive Deployment And Scaling

The structure of Docker’s container-based platform enables highly portable workloads, which can run on a developer’s local laptop, on physical or virtual machines in a data center, on cloud providers, or in a variety of other environments. This structural portability and lightweight nature also make it easy to dynamically manage workloads, scaling up or tearing down applications and services as business needs dictate, in near real time. This is especially important with the ever-changing nature of new hardware and technology, or with natural rises and falls of demand due to seasonal business cycles, for example.

Doing More With Less

Docker is a best friend to individuals or smaller companies who need powerful and enterprise-level tools and who have limited operating budgets. Docker provides a viable, cost-effective alternative to hypervisor-based virtual machines, which lets project managers or development teams use more of the existing compute capacity to achieve targeted business goals. Docker is ideal for high density environments, and conversely for small and medium deployments where teams need to maximize their resources.

--

--

Sololearn
Sololearn

The #1 platform to learn to code · Available anytime & anywhere for free · Join our community of millions of learners worldwide where no questions go unanswered