Some ways to solve the problem of Jenkins integrated docker plugin

Some ways to solve the problem of Jenkins integrated docker plugin

background

The test environment uses Jenkins integrated with the docker plug-in to implement a one-click deployment service for the test environment. First, Jenkins has installed the docker build and publish plug-in, but a series of problems have occurred in the operation of the job!

Question 1

Docker execution reports an error, Build step 'Docker Build and Publish' marked build as failure. There are many problems that lead to this sentence. More detailed error information: Jenkins container does not support docker operations?

Analysis of the problem: Jenkins is deployed using docker, so there are no docker-related operation commands in the Jenkins container, so the execution fails!

Solution: You need to map the host's Docker environment to the Jenkins container before you can use the Docker command line.

docker run --name myjenkins -p 8123:8080 -p 50000:50000 -v /run/docker.sock:/var/run/docker.sock -v /var/jenkins_home:/var/jenkins_home -u 0 -d jenkins/jenkins:lts

Execute again, the result is still wrong, no solution!

Error 2

It prompts that there is no executable command in the bin directory?

Analysis: We know that for any environment that we install, if we want to execute its command line in the Linux environment, we need to add the environment variable: /usr/bin

Solution: Continue to map the host docker executable command

docker run --name myjenkins -p 8123:8080 -p 50000:50000 -v /run/docker.sock:/var/run/docker.sock -v $(which docker):/usr/bin/docker -v /var/jenkins_home:/var/jenkins_home -u 0 -d jenkins/jenkins:lts

Tips: The which command is similar to whereis to find commands or files: the former checks the commands in the system environment variables (returns the first result), and the latter returns the path related to the program name (returns all matching results)

Error 3

Unable to find related dependencies: error while loading shared libraries: libltdl.so.7: cannot open shared object file: No such file or/libltdl.so.7

Analysis: Inside the jenkins container, because the container is not shared with the host, the library can be found on the host: cd usr/lib64/

Solution: Find the libltdl.so.7 dependency library on the host and mount the container

docker run --name myjenkins -p 8123:8080 -p 50000:50000 -v /run/docker.sock:/var/run/docker.sock -v $(which docker):/usr/bin/docker -v /usr/lib64/libltdl.so.7:/usr/lib/x86_64-linux-gnu/libltdl.so.7 -v /var/jenkins_home:/var/jenkins_home -v /var/data/shell:/var/data/shell -u 0 -d jenkins/jenkins:lts

Error 4

no basic auth credentials No authentication

Analysis of the cause: This plug-in uses the docker command inside the jenkins container. There is no error in building the image. When it needs to be pushed to the image repository in the container, auth is required.

Solution: Directly add a line of authentication to the Jenkins job, docker login --username=xxxx --password=xxxx nexus.xxxx.com

Tips: After executing the command, a .credentials will be generated in the current directory, which records the account and password information for logging in to the nexus image repository

Summarize

At this point, the previous steps have been completed and docker commands can be used inside the jenkins container. There is no need to use the shh plug-in to jump out of the container to the host to execute the build & push operation commands. You only need to execute the script to start the container!

In Docker containerization, everything mapped between the host and the container is the same, that is, whether the file mounted on the host in the container is modified or the mounted host file is modified in the container, both will be modified at the same time.

This is the end of this article about some methods to solve the problem of Jenkins integrated docker plug-in. For more relevant Jenkins integrated docker plug-in content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Implementation of Jenkins+Docker continuous integration
  • Detailed tutorial on building a continuous integration delivery environment based on Docker+K8S+GitLab/SVN+Jenkins+Harbor
  • A complete example of continuous integration with ASP.NET Core+Docker+Jenkins

<<:  A new CSS image replacement technique (background display and text moving off screen) to say goodbye to 9999px

>>:  JavaScript implements the detailed process of stack structure

Recommend

JavaScript+html to implement front-end page sliding verification (2)

This article example shares the specific code of ...

Detailed steps to install docker in 5 minutes

Installing Docker on CentOS requires the operatin...

Example steps for using AntV X6 with Vue.js

Table of contents 0x0 Introduction 0x1 Installati...

MySQL automatically inserts millions of simulated data operation code

I use Navicat as my database tool. Others are sim...

How to check whether a port is occupied in LINUX

I have never been able to figure out whether the ...

Detailed explanation of the relationship between Vue and VueComponent

The following case reviews the knowledge points o...

jQuery realizes the picture following effect

This article shares the specific code of jQuery t...

Bootstrap+Jquery to achieve calendar effect

This article shares the specific code of Bootstra...

More Features of the JavaScript Console

Table of contents Overview console.log console.in...

How to output Chinese characters in Linux kernel

You can easily input Chinese and get Chinese outp...

The use of setState in React and the use of synchronous and asynchronous

In react, if you modify the state directly using ...

Detailed explanation of how to write mysql not equal to null and equal to null

1. Table structure 2. Table data 3. The query tea...

Analysis of Nginx Rewrite usage scenarios and configuration methods

Nginx Rewrite usage scenarios 1. URL address jump...

Examples of correct use of maps in WeChat mini programs

Table of contents Preface 1. Preparation 2. Actua...