Docker Private Warehouse Deployment and Management

Docker Private Warehouse Deployment and Management Structure of this chapter: Introduction to Harbor Deploying the Docker Compose service on which Harbor depends Deploy Harbor Service Harbor Daily Operations Management Harbor Management Life Cycle Introduction to Harbor Harbor is an open source enterprise Docker Registry project for VMware A ...

Posted by bilis_money on Sun, 05 Jan 2020 10:11:31 +0100

Docker introduction also uses

1,Check kernel version, must be 3.10 And above uname -r 2,install docker yum install docker 3,input y Confirm installation 4,start-up docker [root@localhost ~]# systemctl start docker [root@localhost ~]# docker -v Docker version 1.12.6, build 3e8e77d/1.12.6 5,Boot up docker [root@localhost ~]# systemctl enable docker Create ...

Posted by davidtube on Thu, 02 Jan 2020 15:06:48 +0100

Docker security mechanism and resource management restrictions

Setting up the security mechanism of docker Container permissions Set the container to run at privilege level: - privileged=true sometimes we need the container to have more permissions For example, operating kernel module, controlling swap partition, mounting USB disk, modifying MAC address, etc. [root@foundation7 ...

Posted by robbyc on Thu, 02 Jan 2020 07:18:33 +0100

Introduction to the definition of kubernetes resource list

Kubernetes resource list definition Kubernetes is a ReSTful APIGET,PUT,DELETE,POST kubectl run ,get,edit Resources, objectsworkload: Pod, replicate, Statefulset, Daemonset, job, Cronjob, etc Service discovery and load balancing: service, Ingress Configuration and storage: Volume, CSI     ConfigMap,Secret     DownwardAPI Clus ...

Posted by alecjw on Thu, 02 Jan 2020 04:24:16 +0100

Using docker compose to quickly build php7+nginx+mysql5.7+redis environment in centos7

1. Install docker and docker compose centos7 installs docker and docker compose 2. Docker compose common commands # Build the container under the folder containing docker-compose.yml # If you use the Dockerfile to modify the Dockerfile, execute the following again to apply the modification docker-compose up -d # Stop all ...

Posted by goosez22 on Sun, 29 Dec 2019 18:57:17 +0100

Kubernetes log query and Analysis Practice

Introduction: This paper will introduce how to collect and query Kubernetes (K8s) logs based on the log service. In addition, it also gives a brief introduction to Ingress and Audit schemes. In order to facilitate our understanding through operation, this paper provides detailed operation steps and corresponding screenshots and configuration co ...

Posted by agent47 on Fri, 27 Dec 2019 09:53:59 +0100

Chapter One Nine: Easily complete the installation of fabric s block chains

Catalog 1 Preface 2 Operating system environment settings 2.1 Host and Operating System 2.2 Set Host Name 2.3 Setting up DNS 2.4 Close the firewall 2.5 Turn off selinux 2.6 Turn off swap 3 Operating system software installation 4 Install docker 5 Install docker-compose 5.1 jsonschema version mismatch 5.2 cffi version mismatch 5.3 dnspython ver ...

Posted by Dream$of$uccess on Tue, 24 Dec 2019 19:33:15 +0100

FastDFS Distributed File Storage

What is FastDFS? FastDFS is an open source, lightweight, distributed file system.He solves issues such as large data storage and load balancing.Especially suitable for online services with small and medium files (4KB < FileSize < 500MB), such as video, audio, picture websites, etc.FastDFS is an open source and lightweight distributed fi ...

Posted by Josh18657 on Tue, 24 Dec 2019 01:31:55 +0100

Docker initial experience: docker deploys spring cloud project Eureka server

Docker deploys spring cloud project Eureka server 1 create Eureka server project Create the parent project cloud demo, whose pom.xml is as follows: <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http:// ...

Posted by watson100 on Wed, 18 Dec 2019 15:37:04 +0100

Offline saving and loading of Kubernetes images (very fast)

The image of Kubernetes can be saved offline to a file, and then loaded from the file to realize offline installation (very fast). For the kubernetes version 1.12.1 image used here, the corresponding version number can be modified for other versions. Script file here: be located: https://github.com/openthings/kubernetes-tools/kubeadm/ ...

Posted by Sarahlmorrow on Tue, 17 Dec 2019 20:04:08 +0100