Docker Container Data Volume Details

1.Data Volume Introduction Docker packages and runs environments to form container runs. Data generated by Docker containers will naturally be lost when the containers are deleted unless a new image is generated through docker commit. In order to save data in Docker we use volumes. | Volumes are directories or files that exist in one or more ...

Posted by Moonspell on Sun, 12 Sep 2021 19:05:21 +0200

docker private warehouse registry and resource control cgroup

1, Establishment of private image 1. Download and modify the daemon file [root@docker ~]# docker pull registry [root@docker ~]# vim /etc/docker/daemon.json { "insecure-registries": ["192.168.100.21:5000"], #Add line, local ip "registry-mirrors": ["https://xxxxx.mirror.aliyuncs.com "] # own alicloud image accelerator } [roo ...

Posted by Dominator69 on Sun, 12 Sep 2021 06:45:11 +0200

redis-sentinel cluster (k8s script)

1 redis backup It is recommended that rdb and aof be turned on simultaneously.rdb is on by default and aof is off by default.Refer to rdb and aof for additional details http://blog.csdn.net/guoxingege/article/details/48780745 1.1Redis.confConfiguration Details requirepass 123456 ## The following is the rdb confi ...

Posted by Alt_F4 on Tue, 14 Jul 2020 16:40:04 +0200

docker builds redis cluster

docker builds redis cluster 1. Download the redis image docker pull redis 2. Prepare the configuration fileRedis.conf mkdir /home/docker/redis/ wget https://raw.githubusercontent.com/antirez/redis/3.0/redis.conf -O /home/docker/redis/redis.conf cd /home/docker/redis/ sed -i 's/# slaveof <masterip> <masterport>/slaveof red ...

Posted by legacyblade on Mon, 13 Jul 2020 16:48:41 +0200

An hour to develop a Demo with Hyperledger Fabric

First understand what it is, then understand how to do it, then understand why As the beginning of the series, this paper tries to make you have a general understanding of fabric through a simple process of fabric application development. preface Put three pictures first:     The first is Gar ...

Posted by nats on Sun, 28 Jun 2020 04:01:28 +0200

docker distributed warehouse harbor

Article catalog docker distributed warehouse harbor 1. Official introduction to harbor function 2. Install Harbor 2.1 solving dependent environment 1. Install docker 2. Install docker compose 2.2 and configure harbor startup 2.3. Harbor later modification configuration 3. Use harbor and upload i ...

Posted by schilly on Sat, 27 Jun 2020 08:24:42 +0200

Docker 2020 detailed tutorial and summary

Super long warning!!! It is recommended to look at the catalogue first Introduction to docker and related cases It's not easy to summarize. If you agree, please like it~ If there is any mistake, please correct it! Docker directory Document introduction Docker overview Why does Docker appear? Docker ...

Posted by tron00 on Thu, 25 Jun 2020 05:47:30 +0200

LeNet-5 migration case of convolution neural network

Abstract: LeNet-5 is a convolutional neural network designed by Yann LeCun in 1998 for handwritten digit recognition. Most American banks used it to recognize handwritten digits on cheques. It is one of the most representative experimental systems in the early convolutional neural network. It can be said that LeNet-5 is equivalent to "H ...

Posted by lauriedunsire on Wed, 24 Jun 2020 05:54:39 +0200

Using lancher2 + kubernetes + skywalking to deploy the spring cloud project (III [jenkins audit and release])

List of articles in this series (under planning) Basic k8s yaml script Publishing helm+shell script optimizes a large number of redundant configuration releases Streamline deployment of jenkins user audit service mesh(istio) service grid Publishing preface Previous Using lancher2 + kubernetes + skyw ...

Posted by rxero on Wed, 24 Jun 2020 04:20:46 +0200

k8s uses Nodeport to expose services

k8s uses Nodeport to expose services There are many ways to expose K8s services. Here we mainly study how to expose services through Nodeport First of all, we must understand several concepts before exposing ports: *< 1 >. Server: it is a cluster instance entry composed of accessing backend pod replicas. It consists of: ` [cluster_ip] ` ...

Posted by mrpickleman on Wed, 24 Jun 2020 04:03:57 +0200