DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Please enter at least three characters to search
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Zones

Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks

Because the DevOps movement has redefined engineering responsibilities, SREs now have to become stewards of observability strategy.

Apache Cassandra combines the benefits of major NoSQL databases to support data management needs not covered by traditional RDBMS vendors.

The software you build is only as secure as the code that powers it. Learn how malicious code creeps into your software supply chain.

Generative AI has transformed nearly every industry. How can you leverage GenAI to improve your productivity and efficiency?

Related

  • Tips for Managing Multi-Cluster Kubernetes Deployment With High Efficiencies
  • Common Performance Management Mistakes
  • How Your Application Architecture Has Evolved
  • Are You Tracking Kubernetes Applications Effectively?

Trending

  • Enforcing Architecture With ArchUnit in Java
  • The End of “Good Enough Agile”
  • Event Driven Architecture (EDA) - Optimizer or Complicator
  • GitHub Copilot's New AI Coding Agent Saves Developers Time – And Requires Their Oversight
  1. DZone
  2. Software Design and Architecture
  3. Microservices
  4. Docker Introduction, Architecture, and Command Details

Docker Introduction, Architecture, and Command Details

Its primary focus is to automate the deployment of applications inside software containers and the automation of operating system-level virtualization on Linux.

By 
Jaydeep Patil user avatar
Jaydeep Patil
·
Oct. 03, 22 · Tutorial
Likes (4)
Comment
Save
Tweet
Share
4.1K Views

Join the DZone community and get the full member experience.

Join For Free

Docker Overview

Its primary focus is to automate the deployment of applications inside software containers and the automation of operating system-level virtualization on Linux. It’s more lightweight than standard containers and boots up in seconds.

Why Does Docker Come Into the Picture?

Before Docker, all of us faced many issues. For example, when we built the application and after testing all the scenarios, we passed them to the QA environment, and then on the machines of QA members, we needed to take care of all the dependencies and versions of assemblies and frameworks. So there is a gap between the QA and the development team, and it also wastes time. So, when we use Docker, this problem will get sorted, and we can use Docker Images on any platform without too much configuration.

Docker Architecture

Docker Architecture

Docker uses a client-server architecture. The Docker Client connects with the Docker Daemon, which runs and builds the Docker containers. The Docker client and Docker daemon are running on the same host, or you can connect a Docker client to a remote Docker daemon. The Docker client and daemon communicate using a REST API over a network interface.

Docker Daemon

The Docker daemon is the brain behind the whole operation. When you use the docker run command to start up a container, your Docker client will translate that command into an HTTP API call and send it to the Docker daemon. The Docker daemon then evaluates the request, talks to the underlying OS, and provisions your container.

Docker Client

The Docker client is used by users who interact with Docker. When you use commands such as docker run, the client sends these commands to the Docker Daemon, which takes care of that. The Docker command uses the Docker API. The Docker client can communicate with more than one daemon.

Docker Desktop

Docker Desktop is an easy-to-install application for your Mac or Windows environment that enables you to build and share containerized applications and microservices. The Docker Desktop includes the Docker daemon, the Docker client, Docker Compose, and Kubernetes.

Docker Registries

A Docker registry stores Docker images. Docker Hub is a public registry that anyone can use, and Docker is configured to look for images on Docker Hub by default. If you want to create your own directory, then that is also possible.

When you use the docker pull or docker run commands, the required images are pulled from your configured registry. When you use the docker push command, your image is pushed to your configured registry.

Docker Objects

When you use Docker, you create and use images, containers, networks, volumes, plugins, and other objects. This section is a brief overview of some of those objects.

Images

A Docker image is a read-only template containing instructions for creating a container that can run on the Docker platform. It provides a convenient way to package up applications and preconfigured server environments, which you can use for your own private use or share publicly with other Docker users.

Containers

A container is a way to run applications that are isolated from each other. Rather than virtualizing the hardware to run multiple operating systems, containers rely on virtualizing the operating system to run multiple applications. This means you can run more containers on the same hardware than VMs because you only have one copy of the OS running, and you do not need the memory to use it and CPU cores for each instance of your app. Just like any other app, when a container needs CPU or memory, it allocates them and then frees them up when done, allowing other apps to use those same limited resources later.

I hope you understand some of the basics of Docker and how it works.

Architecture Docker (software)

Published at DZone with permission of Jaydeep Patil. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • Tips for Managing Multi-Cluster Kubernetes Deployment With High Efficiencies
  • Common Performance Management Mistakes
  • How Your Application Architecture Has Evolved
  • Are You Tracking Kubernetes Applications Effectively?

Partner Resources

×

Comments
Oops! Something Went Wrong

The likes didn't load as expected. Please refresh the page and try again.

ABOUT US

  • About DZone
  • Support and feedback
  • Community research
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 100
  • Nashville, TN 37211
  • support@dzone.com

Let's be friends:

Likes
There are no likes...yet! 👀
Be the first to like this post!
It looks like you're not logged in.
Sign in to see who liked this post!