After reading this article, you can thoroughly understand Dockerfile

Dockerfile function: Dockerfile is a "command file" used in Docker to install all dependencies of the project with one click. It is written according to the official requirements of Docker. During build, it will execute step by step according to similar shell commands and build an image; explain: From the perspective of applicatio ...

Added by XeRoZeN on Mon, 17 Jan 2022 16:59:07 +0200

WSL2 uses Docker to run ManageIQ (including Systemctl installation, script configuration agent and Docker port mapping)

WSL2 uses Docker to run ManageIQ (including Systemctl installation, script configuration agent and Docker port mapping) Use the image provided by the ManageIQ project on the Docker Hub to test the ManageIQ running in the Docker container. It solves some problems in using WSL2: starting with systemd, accessing the host windows agent in WSL2, in ...

Added by jarriola on Mon, 17 Jan 2022 13:29:47 +0200

Dockerfile image construction practice

Image production specification First create the most common layer, and each subsequent image depends on the previous parent image. Build images hierarchically and deploy tomcat high availability tomcat1, nginx1, haproxy1 and keepalived1 are deployed on the 10.0.0.51 node tomcat2, nginx2, haproxy2 and keepalived2 are deployed on the 10.0.0. ...

Added by johnnyblaze9 on Mon, 17 Jan 2022 13:12:01 +0200

Docker's network mode and data management

catalogue Docker four network modes docker custom network View a list of network modes View container information (including configuration, environment, gateway, mount, cmd, etc.) Specifies the IP address of the assignment container Custom network fixed IP Port mapping Execute in container commands in the host environment Docker data ...

Added by kamy99 on Mon, 17 Jan 2022 07:17:26 +0200

Using argocd to realize application CD process under k8s

For more information, please pay attention to wl-awesome Argo CD brief introductionCore conceptDeploy argocdpractice Process analysisSource library key filesConfiguration library key filesharbor library configuration informationargocd configuration informationSample applicationBest practices Reference documents Argo CD brief intro ...

Added by inSaneELF on Mon, 17 Jan 2022 05:25:32 +0200

docker compose of docker three swordsmen (configure haproxy+nginx load balancing)

1, Introduction to docker compose 1. The application system of microservice architecture generally includes several microservices, and each microservice will generally deploy multiple instances. If each microservice needs to be started and stopped manually, it can be imagined that the efficiency is low and the amount of maintenance is larg ...

Added by spiffy577 on Mon, 17 Jan 2022 00:14:58 +0200

Detailed explanation of kubectl common commands

explain Kubernetes kubectl command table [Chinese website] Kubernetes kubectl command table The most common and direct way to use and maintain Kubernetes clusters is to use the built-in command-line tool Kubectl.The following picture is an overview, which can be used to recall memory after familiarity. Note: Although the following com ...

Added by affluent980 on Sun, 16 Jan 2022 08:03:42 +0200

Notes on Docker introduction

1. Docker overview (1) Basic introduction Docker is an open source application container engine, which is based on Go language and complies with Apache 2.0 0 protocol is open source. Docker allows developers to package their applications and dependency packages into a lightweight and portable container, and then publish them to any popula ...

Added by Termina on Sun, 16 Jan 2022 05:33:58 +0200

Centos7 installs the 1.21.2 cluster of K8S

Centos7 installation K8S 1. Server Three Centos7 servers need to be prepared and configured with at least 2C and 2G. All three servers have been configured with static IP. If not, please refer to: Configuring static IP for VM Ware+Centos7 host nameIPDocker versionHost configurationK8S versionmaster01192.168.159.17120.10.72C8G1.21.2wo ...

Added by komlos on Sun, 16 Jan 2022 04:59:25 +0200

Linux (enterprise) - docker

Linux (enterprise) - docker 1. Introduction to docker Docker is the engine for managing containers. Docker is an application packaging and deployment platform, rather than a simple virtualization technology. 2. Installation and startup After configuring the yum source, install and enable. Alibaba cloud image is recommended. https://mirror ...

Added by mitwess on Sat, 15 Jan 2022 16:10:21 +0200