Doker Mirror Management Foundation

Doker Mirror Management Foundation The concept of mirroring Mirroring can be understood as an application container, while docker is used to load and unload containers. The docker image contains the file system and its contents needed to start the container, so it is used to create and start the container. The docker image uses a hierarchic ...

Added by Disgrntld on Thu, 02 Dec 2021 19:28:36 +0200

docker single host network type

As a small note reference!!! This article mainly writes the docker single host network type   none host   container   bridge The first three are simple. Finally, I will talk about the bridge network in detail When docker is installed, three different networks will be created by default: [^_^] kfk ~# docker network ls NE ...

Added by ollie007 on Thu, 02 Dec 2021 00:29:39 +0200

Basic usage of Docker

docker Containers in docker: lxc --> libcontainer --> runC OCI&OCF OCI Open Container-initiative Led by the Linux foundation, it was founded in June 2015It aims to develop an open industrial standard around container format and runtimecontains two specifications the Runtime Specification(runtime-spec) the Image Specification(ima ...

Added by delldeveloper on Wed, 01 Dec 2021 20:07:10 +0200

leetcode algorithm problem punch in - day04

Sword finger offer 09   Queue with two stacks Implement a queue with two stacks. The declaration of the queue is as follows. Please implement its two functions appendTail and deleteHead to insert integers at the end of the queue and delete integers at the head of the queue respectively. (if there are no elements in the queue, delete head ...

Added by hacko on Wed, 01 Dec 2021 00:55:19 +0200

Docker: successfully install docker in Ubuntu and simply configure it

Environmental Science: Ubuntu 20.04 (LTS)Intel i7 9750H 1, Installing Docker using warehouse Official description: Use the warehouse to complete the installation of Docker If you are installing Docker for the first time, you need to set the Docker warehouse before installing Docker through the warehouse. 1. Set warehouse 1. Update apt pac ...

Added by yacaph on Tue, 30 Nov 2021 21:25:17 +0200

Dockerfile writing guide

introduction The remote warehouse can pull a tomcat image, and then docker run starts the container, and then docker exec -it container id /bin/bash enters the container and returns our program to webapps. Wait, this series of operations need to be operated manually step by step. Then I ask you: you don't have the deployment permission of ...

Added by clartsonly on Tue, 30 Nov 2021 12:48:59 +0200

Docker container monitoring coadvisor of container cloud series

There are many container monitoring tools. This paper mainly compares the characteristics and functions of cdadvisor, Weave Scope and Prometheus, and tests the use of each tool in combination with the deployment environment. There are many container monitoring tools. The following table compares the characteristics and functions of several m ...

Added by gva482 on Tue, 30 Nov 2021 03:18:30 +0200

Docker notes (Advanced) - Docker Compose

Docker Compose 1. Introduction Official introduction Compose is a tool for defining and running multi-container Docker applications. With Compose, you use a YAML file to configure your application's services. Then, with a single command, you create and start all the services from your configuration. To learn more about all the features ...

Added by kevski on Mon, 29 Nov 2021 00:59:38 +0200

Kubernetes detailed tutorial - Introduction to actual combat

4. Introduction to actual combat This chapter describes how to deploy and access an nginx service in a kubernetes cluster. 4.1 Namespace Namespace is a very important resource in kubernetes system. Its main function is to realize resource isolation of multiple environments or multi tenant resources. By default, all pods in the kubernetes cl ...

Added by richmlpdx on Sun, 28 Nov 2021 19:48:30 +0200

Kubernetes detailed tutorial -- detailed explanation of Pod

5. Detailed explanation of pod 5.1 Pod introduction 5.1.1 Pod structure Each Pod can contain one or more containers, which can be divided into two categories: The number of containers where the user program is located can be more or less Pause container, which is a root container for each Pod. It has two functions: It can be used as ...

Added by Viper76 on Sun, 28 Nov 2021 14:39:29 +0200