[working direction] docker principle and common commands

preface Basic principles and common commands of docker virtual machine Host OS and Guest OSSoftware such as VMWare operates the hardware directly or through the Host OS, as shown in the following figure Running multiple virtual machines will cause a lot of waste of hardware resources, and docker technology came into being container Differ ...

Posted by Termina on Thu, 11 Nov 2021 14:19:56 -0800

C + + Abstract container type I (vector, list)

1, Container When you first understand containers, you can think of containers as libraries that provide a series of specific functions. 2, Common containers STL Classification of standard template library: Sequence container: vector: Vector container list : List container deque : Dual ended queue ...

Posted by herschen on Thu, 11 Nov 2021 10:27:33 -0800

How to deploy your own project using docker

How to deploy your own project using docker? A while ago, the company had a need to deploy the project to the local privatization. I didn't study the server and it was very laborious to build it, so I used docker to make a series of images of project privatization deployment. Now I write a blog to record the process of learning and building ...

Posted by kye on Wed, 10 Nov 2021 11:56:29 -0800

All extensible points in the Bean's life cycle in the Spring container

1. Background In this article, I summarized almost all the extension interfaces of Spring & springboot, as well as the usage scenarios of each extension point. And sorted out the sequential call graph of all extensible points from being loaded to the final initialization of a bean in spring. Thus, we can also see how beans are loaded int ...

Posted by oceans on Tue, 09 Nov 2021 00:19:23 -0800

Java learning notes: container

container A Collection, also known as a Collection, is used to hold and manage data. 1. Singleton set 1.1 concept Singleton set: store data one by one. Collection interface: it is the root interface of a singleton collection and has two sub interfaces. It is divided into List interface (orderly storage, repeatable, "dynamic" arra ...

Posted by kabucek1 on Mon, 08 Nov 2021 16:13:12 -0800

Installation and use of kubernetes

1 Introduction to kubernetes 1.1 kubernetes function Automatic packing Based on the resource configuration requirements of the application running environment, the application container is automatically deployed Self healing (self healing) When the container fails, the container is restartedWhen there is a problem with the deployed Node, t ...

Posted by sneakyimp on Mon, 08 Nov 2021 08:03:36 -0800

Docker php installation extension steps

Demonstrate what the four commands docker PHP source, docker PHP ext install, docker PHP enable docker configure are used for and what they do in the PHP container? The PHP container in Docker installs extensions in the following ways: Installation by peclIt is installed through several special commands in the php container, which can be used ...

Posted by ChrisA on Mon, 08 Nov 2021 04:34:42 -0800

vue novice (install devtools browser debugging tool, container and vue instance, template syntax, event binding, conditional rendering, list rendering)

Download the tutorial for installing and configuring Vue debugging tools and put it here: Install Vue devtools browser debugging tool Relationship between container and instance: Container: in short, it is the label corresponding to the attribute value of el in the Vue instance in the page structure Instance: to use Vue, you need to create a ...

Posted by sincspecv on Sun, 07 Nov 2021 21:32:19 -0800

06 vector class and Simulation Implementation in STL

1, Introduction to vector 1. vector is a sequence container that represents a variable size array. 2. Like an array, vector also uses continuous space to store elements, which also means that the elements of vector can be accessed by subscripts. 3. The difference between vector and ordinary array is that the size of vector can be chan ...

Posted by andremta on Sat, 06 Nov 2021 15:48:17 -0700

Fail fast and fail safe mechanisms of Iterator

Fail fast and fail safe mechanisms of Iterator The difference between fail fast and fail safe: fail safe allows you to modify the data in the container during traversal, while fail fast does not. Fail fast Directly traverse the container. In the process of traversal, once it is found that the data in the container has been modified, ...

Posted by davestewart on Sat, 06 Nov 2021 11:56:03 -0700