Method of realizing automated deployment based on Docker+Jenkins

Method of realizing automated deployment based on Docker+Jenkins

Use Code Cloud to build a Git code storage warehouse

https://gitee.com/login

  • Use Code Cloud to create a private git repository
  • Upload the local springboot project to the git repository

Install Jenkins environment based on Docker

1. Install Jenkins using Docker

docker run -p 8080:8080 -p 50000:50000 -v jenkins_data:/var/jenkins_home jenkinsci/blueocean

2. Access Jenkins address 8080

Note: When starting for the first time, it will take about 3-10 minutes for Jenkins to load.

3. Unlock Jenkins

docker exec -it 7f485bd95c3b /bin/bash enter the jenkins container cat /var/jenkins_home/secrets/initialAdminPassword 

It takes about 3-10 minutes to wait

Create a new user

Jenkins global tool configuration

Enter the jenkins container and echo $JAVA_HOME to get the java environment installation address

JDK environment installation

Maven environment installation

Install the Jenkins corresponding Maven plugin

Find "System Management" - "Install Plugin", click "Optional Plugin", and find the following Maven plugin version

Plugin NameMaven Integration

Jenkins implements Springboot project automatic deployment to create a new release task

Configure the task git account and password

3. Project packaging

clean install

Click Build Now

The first build may take a long time because you need to download some related dependent jar packages

Execute the shll script after Jenkins starts successfully

#!/bin/bash
#Service name SERVER_NAME = springboot
# Source jar path, after mvn packaging is completed, the jar package name in the target directory can also be selected as a war package. The war package can be moved to the webapps directory of Tomcat for operation. Here, the jar package is used and the java -jar command is used to execute JAR_NAME=springboot-0.0.1-SNAPSHOT
# Source jar path #/usr/local/jenkins_home/workspace--->jenkins working directory #demo project directory #target package generated jar package directory JAR_PATH=/var/jenkins_home/workspace/springboot/target
# After packaging is completed, move the jar package to the directory where the jar package is run--->work_daemon. The work_daemon directory needs to be created in advance JAR_WORK_PATH=/var/jenkins_home/workspace/springboot/target
 
echo "Query process id-->$SERVER_NAME"
PID=`ps -ef | grep "$SERVER_NAME" | awk '{print $2}'`
echo "Get process ID: $PID"
echo "End process"
for id in $PID
do
kill -9 $id 
echo "killed $id" 
done
echo "End process completed"
 
#Copy the jar package to the execution directory echo "Copy the jar package to the execution directory: cp $JAR_PATH/$JAR_NAME.jar $JAR_WORK_PATH"
cp $JAR_PATH/$JAR_NAME.jar $JAR_WORK_PATH
echo "Complete jar package copy"
cd $JAR_WORK_PATH
#Change file permissions chmod 755 $JAR_NAME.jar
Nohub java -jar $JAR_NAME.jar

Adding nohub means running in the background, or using nohub &

Container maps port 8081

1. Restart the container

systemctl restart docker

2. Clear non-running containers

docker rm $(sudo docker ps -a -q)
docker run -p 8080:8080 -p 8081:8081 -p 50000:50000 -v jenkins_data:/var/jenkins_home jenkinsci/blueocean

This is the end of this article about automated deployment based on Docker+Jenkins. For more information about automated deployment based on Docker+Jenkins, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Jenkins+Docker+Gitee+SpringBoot automated deployment
  • Automated front-end deployment based on Docker, Nginx and Jenkins
  • Docker+gitlab+jenkins builds automated deployment from scratch
  • How to build docker+jenkins+node.js automated deployment environment from scratch
  • Docker builds Jenkins and automates the steps of packaging and deploying projects

<<:  Detailed tutorial on deploying Jenkins based on docker

>>:  JavaScript implements an input box component

Recommend

Example of implementing text wrapping in html (mixed text and images in html)

1. Text around the image If we use the normal one...

Analysis of MySQL concurrency issues and solutions

Table of contents 1. Background 2. Slow query cau...

Access the MySQL database by entering the DOS window through cmd under Windows

1. Press win + R and type cmd to enter the DOS wi...

Docker deploys nginx and mounts folders and file operations

During this period of time, I was studying docker...

The complete usage of setup, ref, and reactive in Vue3 combination API

1. Getting started with setUp Briefly introduce t...

How to design a web page? How to create a web page?

When it comes to understanding web design, many p...

MySQL transaction isolation level details

serializable serialization (no problem) Transacti...

MySQL 5.5.27 winx64 installation and configuration method graphic tutorial

1. Installation Package MYSQL service download ad...

js handles account logout when closing the browser

Table of contents Classic approach question Furth...

Nginx defines domain name access method

I'm building Nginx recently, but I can't ...

Solution for FileZilla 425 Unable to connect to FTP (Alibaba Cloud Server)

Alibaba Cloud Server cannot connect to FTP FileZi...

Three ways to delete a table in MySQL (summary)

drop table Drop directly deletes table informatio...

How to automatically delete records before a specified time in Mysql

About Event: MySQL 5.1 began to introduce the con...

Vue implements the drag and drop sorting function of the page div box

vue implements the drag and drop sorting function...