1. Pull the imageThe version I installed here is 2.222.3-centos. You can get the version you need here: https://hub.docker.com/_/jenkins?tab=tags ocker pull jenkins/jenkins:2.222.3-centos 2. Create a local data volumeThe path I map the local data volume to is /data/jenkins_home/. You can modify it if you want to put it somewhere else. -p /data/jenkins_home/ The directory permissions need to be modified because when mapping the local data volume, the owner of the /data/jenkins_home/ directory is the root user, and the uid of the jenkins user in the container is 1000. -R 1000:1000 /data/jenkins_home/ 3. Create a containerdocker run -d --name jenkins -p 8040:8080 -p 50000:50000 -v /data/jenkins_home:/var/jenkins_home jenkins/jenkins:2.222.3-centos illustrate:
4. Configure Jenkins1. Open Jenkins Access http://192.168.1.106:8040/ (replace with your own IP and port) through the browser to enter the initial page. If Jenkins has not yet started, the following content will be displayed 2. Enter the administrator password Here you are required to enter the initial administrator password. According to the prompt, the password is in the file /var/jenkins_home/secrets/initialAdminPassword. Note that this path is in the Docker container, so we get it through the following command ker exec jenkins cat /var/jenkins_home/secrets/initialAdminPassword 85770376692448b7b6a8e301fb437848 Don't forget that we mapped the local data volume /data/jenkins_home/, so you can also output it with the following command ata/jenkins_home/secrets/initialAdminPassword 85770376692448b7b6a8e301fb437848 After entering your password, click Continue 3. Install plugins Select the recommended plugins to install here, and Jenkins will automatically start installing them. If the plugin installation is slow, please refer to Solve the problem of Jenkins plugin installation being slow (Linux) After the installation is complete, it will automatically jump to the next step 4. Create an administrator 5. Instance Configuration Just pay attention to the IP address and port 6. Configuration completed Notice: Reference: This is the end of this article about installing Jenkins with Docker. For more information about installing Jenkins with Docker, 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:
|
<<: Vue handwriting loading animation project
>>: Analysis and solution of a MySQL slow log monitoring false alarm problem
1. Update the entire table. If the value of a col...
1. js will not protect hasOwnProperty from being ...
A friend in the group asked a question before, th...
Effect: The title has its own serial number, the ...
CAST function In the previous article, we mention...
Table of contents Achieve results Introduction to...
html: In fact, it is to arrange several solid cir...
With the rise of mobile terminals such as iPad, p...
The BGCOLOR attribute can be used to set the back...
view: Views in MySQL have many similarities with ...
A colleague reported that a MySQL instance could ...
1|0 Background Due to project requirements, each ...
If there are files that are being used by a proce...
Recently, a friend asked me a question: When layo...
1. Enable remote access to the docker server Log ...