Introduction to Docker Architecture

Introduction to Docker Architecture

Docker includes three basic concepts:

  • Image: A Docker image is equivalent to a root file system. For example, the official image ubuntu:16.04 contains a complete root file system of the Ubuntu 16.04 minimal system.
  • Container: The relationship between an image and a container is like that between a class and an instance in object-oriented programming. An image is a static definition, and a container is an entity at the image runtime. Containers can be created, started, stopped, deleted, paused, etc.
  • Repository: A repository can be seen as a code control center for storing images.

Docker uses a client-server (C/S) architecture model and uses a remote API to manage and create Docker containers.

Docker containers are created from Docker images.

The relationship between containers and images is similar to that between objects and classes in object-oriented programming.

docker Object-oriented
container Object
Mirror kind

concept illustrate

Docker Images

A Docker image is a template used to create a Docker container, such as an Ubuntu system.

Docker Container

A container is an independently running application or a group of applications, and is an entity at the runtime of an image.

Docker Client

The Docker client communicates with the Docker daemon through the command line or other tools using the Docker SDK (https://docs.docker.com/develop/sdk/).

Docker Host

A physical or virtual machine used to execute the Docker daemon and containers.

Docker Registry

The Docker repository is used to store images and can be understood as a code repository in code control.

Docker Hub (https://hub.docker.com) provides a huge collection of images for use.

A Docker Registry can contain multiple repositories; each repository can contain multiple tags; each tag corresponds to an image.

Typically, a repository contains images of different versions of the same software, and tags are often used to correspond to different versions of the software. We can use the format of <warehouse name>:<label> to specify which version of the software is the mirror. If no tag is given, latest is used as the default tag.

Docker Machine

Docker Machine is a command line tool that simplifies Docker installation. Through a simple command line, you can install Docker on the corresponding platform, such as VirtualBox, Digital Ocean, and Microsoft Azure.

The above is the detailed content of the introduction to Docker architecture. For more information about Docker architecture, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • Architecture and component description of docker private library Harbor
  • Tutorial on building a master-slave replication architecture for MySQL 5.7 Docker

<<:  Detailed explanation of the download process of the mysql-connector-java.jar package

>>:  Detailed explanation of several solutions for JavaScript interruption requests

Recommend

Using JavaScript difference to implement a comparison tool

Preface At work, I need to count the materials su...

CSS3 uses the transition property to achieve transition effects

Detailed description of properties The purpose of...

MySQL operations: JSON data type operations

In the previous article, we introduced the detail...

Detailed explanation of Vue login and logout

Table of contents Login business process Login fu...

MySQL 5.7.17 and workbench installation and configuration graphic tutorial

This article shares the installation and configur...

Detailed analysis of classic JavaScript recursion case questions

Table of contents What is recursion and how does ...

Analysis of MySQL data backup and recovery implementation methods

This article uses examples to describe how to bac...

JavaScript Basics Variables

Table of contents 1. Variable Overview 1.1 Storag...

Vue ElementUI implements asynchronous loading tree

This article example shares the specific code of ...

Mysql Workbench query mysql database method

Mysql Workbench is an open source database client...

MYSQL database basics - Join operation principle

Join uses the Nested-Loop Join algorithm. There a...

How does the MySQL database implement the XA specification?

MySQL consistency log What happens to uncommitted...

VUE implements token login verification

This article example shares the specific code of ...