Bye Jenkins! A few lines of scripts for automated deployment, this artifact is a bit awesome!

In a development or production environment, we often develop a set of Automated Deployment schemes (commonly referred to as one-click deployment). One of the more popular is the Gitlab+Jenkins implementation, but it takes up a lot of memory, doesn't have a 8G memory, can't run smoothly, and can't be deployed quickly. Recently discovered a magic ...

Added by robert_gsfame on Tue, 01 Feb 2022 07:48:42 +0200

2021 New Summary: Docker from Getting Started to Actual, Pure Dry!

Introduction to Docker What is Docker? To tell you the truth about what Docker is, let me show you what Docker is through four points. Docker is the world's leading software container platform, developed and implemented in the Go Language.Docker frees developers by automating repetitive tasks such as setting up and configuring development en ...

Added by danoli on Tue, 01 Feb 2022 04:52:50 +0200

Steps for deploying flash with DockerDesktop installed on Mac

​ 1, Download docker stay Docker official website Find the corresponding mac download in. ​ After clicking in, I choose the version of the corresponding chip of my computer and start downloading. I own m1 chip. 2, Install and run docker on MAC computer 1. Double click Docker DMG open the installer and drag the Docker icon to the Applicatio ...

Added by LuciBKen on Sun, 30 Jan 2022 20:22:28 +0200

Docker learning: customize Redis local container through Dockerfile (advanced application)

preface This lecture is from Docker series explanation courses , a separate section, Previous chapters It is mainly theory + practice. Since this chapter, it has entered the advanced application of Docker. Before browsing this article, it is recommended to understand Use of Dockerfile core commands,Optimization of Dockerfile After ...

Added by Schlo_50 on Sun, 30 Jan 2022 19:14:18 +0200

Docker rapid deployment of mysql master-slave database

Master-slave database Install docker Please refer to my other article: https://blog.csdn.net/m0_46435741/article/details/121502952 Create a new instance of the main mysql container Create a container with mysql version 5.7. Mount data volume: Mount the configuration file to the host Directory: / mydata / MySQL master / conf Mount the log ...

Added by szym9341 on Sun, 30 Jan 2022 18:30:53 +0200

Understanding and using dockerFile

dockerFile dockerfile build image Dockerfile image construction is based on the basic image, * * dockerfile is a text file, * * content is some docker instructions written by the user, and each instruction builds a layer. Therefore, the content of each instruction is to describe how the layer should be built. Dockerfile has 13 basic instruct ...

Added by korporaal on Sat, 29 Jan 2022 17:00:47 +0200

Configuration management of Spring Cloud Kubernetes (with code implementation)

All along, people who play springcloud are basically playing springboot1 x. Many related components of spring cloud (Dalston version) are used for configuration center, service registration and discovery. The gateway uses LB made by Netflix for springboot, etc., but these things are too heavy and complex. In a k8s based iaas service system, it ...

Added by Zwiter on Sat, 29 Jan 2022 06:15:36 +0200

Service orchestration of docker

docker service orchestration Docker service orchestration, also known as docker compose, is designed to solve the problem of deploying large-scale applications using docker. Generally, in the production environment, using docker to deploy an application requires multiple containers, such as deploying front-end, back-end, dependent services, da ...

Added by duklaprague on Sat, 29 Jan 2022 05:38:29 +0200

Dokcer14_5: Docker Compose build blog wordpress

docker official website: https://docs.docker.com/samples/wordpress/ Introduction to WordPress You can use Docker Compose to easily run WordPress in an isolated environment built with Docker containers. This quick start guide demonstrates how to use composition to set up and run WordPress. Before you begin, make sure you have installed aut ...

Added by max_power on Sat, 29 Jan 2022 04:47:30 +0200

Using Docker container

Container is another core concept of Docker. Simply put, a container is a running instance of an image. The difference is that the image is a static read-only file, while the container has a writable file layer required by the runtime. If the virtual machine is considered to be a complete set of operating system (including kernel, appli ...

Added by taz321 on Sat, 29 Jan 2022 03:50:56 +0200