Installation and use of Linux Advanced | docker compose is detailed, super detailed!

Creation was not easy, so the guests came to pay attention to it, collect it and subscribe to it three times at a time ❤😜 * Preface Linux, the foundation of operations and maintenance. I am a college student about to graduate, super. If you are also learning Linux, you might as well follow theUTF-8...

Posted by amax on Sat, 18 Dec 2021 07:05:28 +1030

Configure the software development and production environment for the newly installed Linux system to make your development efficiency soar!

In the previous article, we introduced how to configure the server, how to install the system and security reinforcement: Dell server configuration and installation Ubuntu server20.0 04 operating system, super detailed! . Today's article will introduce how to build a stable and orderly productiUTF-8...

Posted by realjumper on Sat, 18 Dec 2021 15:16:26 +1030

Summary of common docker compose commands

1. Build and delete 1.1 up Purpose: build and start the container grammar docker-compose -f xxx.yaml up [ -d ] explain: The default file name is docker compose YML, - f can be omitted. -d is background operation. Example [root@test mysql]# docker-compose up -d Creating network "mysql_default" UTF-8...

Posted by baselinej on Sat, 25 Dec 2021 22:22:51 +1030

Building hadoop cluster based on docker

1. Create a custom docker network docker network create --subnet=172.20.0.0/16 hadoop-cluster 2. Create a custom image (based on centos) Pull centos image: docker pull centos:latest Run container: docker run -d --privileged --name cluster-master -h cluster-master --net hadoop-network --ip 172.1UTF-8...

Posted by phpknight on Mon, 03 Jan 2022 08:26:50 +1030

docker installation + configure image + command operation + data volume + network management + DockerFile + image service + project deployment + [advanced use]

Docker Foundation 1, Docker introduction 1. What is virtualization In computer, Virtualization (English: virtualization) is a resource management technology, which abstracts and transforms various physical resources of computer, such as server, network, memory and storage, breaks the inseparabUTF-8...

Posted by zigojacko on Mon, 24 Jan 2022 22:18:08 +1030

Deploy yapi (front-end mock platform) using docker compose

I was a little busy before, and there were no complicated problems, so I didn't record my blog. I've finally been idle recently, so I want to instigate a mock platform, otherwise I have to wait for the back-end students to provide swigger every time, which will seriously affect my work efficienUTF-8...

Posted by satanclaus on Tue, 25 Jan 2022 12:19:20 +1030

One line of code hung up the service, but Docker deleted the library by mistake

This article involves the relevant knowledge of Docker container deployment. It is recommended to collect and follow up!!! Service accident The service hung up this real-time log Analysis module "Analysis, abbreviated as A" has just been launched; The log collection module "Analysis collect", UTF-8...

Posted by stubarny on Tue, 08 Feb 2022 08:14:18 +1030

Docker super summary, docker this article is enough

1, docker installation 0. Some information By default, the space of the docker container created under the physical machine is 10G, and the memory is the memory of the physical machine 1. yum install # 1. Check the installed version docker version # 2. Delete the old version sudo yum remove doUTF-8...

Posted by freakstyle on Thu, 10 Feb 2022 14:12:02 +1030

Compose theme switching - let your APP change skin with one click

beginningApplying skin change is really an old-fashioned problem. From the original Android, to the later Flutter, and then to the current Compose, although it is an old-fashioned thing, it is still a new bottle of old wine.The topic switching of Android native is not mentioned here. This is noUTF-8...

Posted by Nomaad on Wed, 09 Mar 2022 13:14:35 +1030

How to gracefully perform health checks on Docker containers

Follow the "Wonderful World of Linux" on the official accountSet it as a "star" and take you to play Linux every day! Since version 1.12, Docker has introduced a native health check implementation. For containers, the simplest health check is a process-level health check, which checks whether tUTF-8...

Posted by Anas_M.M.F on Thu, 08 Sep 2022 02:11:09 +0930