Centos quickly installs Jenkins and accesses it through the nginx agent

Here are some points to note during installation Install according to the official website documents Remember! First, the documents are official documents. Please don't read Baidu articles at will. For those that are well written and poorly written, it's best to look at the official website: Jenkins official website: https://www.jenkins.io ...

Posted by xterra on Tue, 01 Feb 2022 16:13:58 +0100

kubernetes installation and configuration

1, System requirements software and hardwareMinimum configurationRecommended configurationcpu and memoryMaster: at least 2 cores and 4GB memoryNode: at least 4 cores and 16GB memoryMaster: 4 cores and 16GB memoryNode: it should be configured according to the number of containers to runDockerVersion 1.9 or aboveVersion 1.12etcdVersion 2.0 or ab ...

Posted by SmoshySmosh on Tue, 01 Feb 2022 15:56:25 +0100

Docker container virtualization

1. Centos deploys Docker container virtualization platform Installing Docker environment dependencies yum install -y yum-utils device-mapper-persistent-data lvm2 Configure yum source of domestic Docker (Alibaba cloud)## yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo Docker installation ...

Posted by webaddict on Tue, 01 Feb 2022 02:43:30 +0100

docker image layering

1, Layering of Docker image (1) Overview docker image Apply published standard formatsSupport the operation of a docker container Creating method of docker image Create based on existing imageCreate based on local templateCreate based on Dockerfile Mirror layering principle Each instruction in Dockerfile creates a new mirror layerThe ...

Posted by Madatan on Mon, 31 Jan 2022 19:26:33 +0100

docker deployment specification - integration with gitlab-ci

docker deployment specification - integration with gitlab-ci This specification is summarized as follows, based on a number of project practices Continuously integrated project directory structure A complete product will contain multiple services, such as web services, java services, python services, etc. And the code for each service co ...

Posted by iceblox on Mon, 31 Jan 2022 18:43:36 +0100

How to automatically feed in Docker environment NET program to generate Dump

preface Previously, the "first-line code farmer" wrote an article on how to dump automatically under windows. It happened that he had a demand for dump under the docker environment. Therefore, this article is based on the article of the boss. tool dotnet-dump (https://docs.microsoft.com/en-us/dotnet/core/diagnostics/dotnet-dump) Pr ...

Posted by Pantho on Mon, 31 Jan 2022 15:26:44 +0100

Introduction to container technology overview of docker core technology

Container is simply a sandbox technology, which "loads" the application into the sandbox and encapsulates the application like a container, so that the applications will not interfere with each other, and the applications put into the sandbox are also convenient to "move". This paper introduces the core technologies related ...

Posted by mr_griff on Sun, 30 Jan 2022 17:48:38 +0100

Docker notes and usage

Docker learning Docker overviewDocker installationDocker command Mirror commandContainer commandOperation command Docker imageContainer data volumeDockerFileDocker network principleIDEA integration DockerDocker ComposeDocker SwarmCI\CD jenkins Docker overview Why does Docker appear? One product: Development - Online two sets of environ ...

Posted by saltedm8 on Sun, 30 Jan 2022 13:26:31 +0100

Network management of docker

docker network host level explanation Docker Daemon will create a virtual bridge named docker0, which is used to connect the host and container, or connect different containers. veth pair is used for communication between different network namespaces. veth pair sends data from one network namespace to veth of another network namespace. ...

Posted by craigerjs on Sun, 30 Jan 2022 06:44:03 +0100

Introduction to docker and how to install docker on CentOS 7 and ubantu

What is docker Docker's idea comes from the container. What problem does the container solve? In a large ship, the goods can be placed neatly. And all kinds of goods are standardized by containers, and containers will not affect each other. Then I don't need a ship for fruit and a ship for chemicals. As long as these goods are well sealed in c ...

Posted by hellouthere on Sun, 30 Jan 2022 05:20:35 +0100