Jenkins+Docker+github+Vue Automated Deployment

1, Introduction 1,Jenkins Jenkins is an independent open source software project. It is a continuous integration tool developed based on Java. It is used to monitor continuous and repeated work. It aims to provide an open and easy-to-use software platform to make continuous integration of software possible. Formerly Hudson, it is an extensible ...

Posted by Cynthia on Tue, 21 Sep 2021 13:50:35 -0700

Easy to master Docker usage

preface Docker has been very popular since 2013, many people are also interested in it, and there are many articles and learning tutorials about docker on the Internet. Here I mention "Introduction to docker" again just to sort out the previous knowledge for easy reference and sharing. Before learning how to use Docker, we need to kn ...

Posted by neoboffins on Mon, 20 Sep 2021 00:35:45 -0700

Jenkins tutorial implements GitLab to trigger Jenkins to automatically publish the front end by module

Wedge The last article solved the requirement of automatic triggering of submit / merge requests, but all front-end modules are in the same code warehouse. How to obtain the change file path and determine which module to publish? This article will take you to solve this problem. thinking Solve three problems respectively: Get a list of chan ...

Posted by deep on Sat, 18 Sep 2021 21:12:36 -0700

Jenkins sonar continuously integrates, detects and sends build emails

Jenkins sonar continuously integrates, detects and sends build emails 1. Preliminary preparation 1. Deploy jenkins services 2.Jenkins server modifies the domain name resolution of gitlab The modification command of Linux is as follows: vi /etc/hosts 192.168.10.248 gitlab.rivamed.cn/ Docker settings are as follows docker exec <contai ...

Posted by jackofalltrades on Fri, 17 Sep 2021 07:12:56 -0700

Linux CentOS springboot jenkins+maven+git for sustainable automatic package deployment

jdk environment: 1.8 linux version: CentOS 6.10 git version: 2.1.1 maven version: 3.5.4 Prepare jdk in advance (omitted) 1, Install and deploy jenkins 1. Download rpm file: 2. Upload to server and install 3. Modify jenkins port (default 8080) 4. Start and restart jenkins 5. Visit jenkins 6. Install plug-ins and create users ...

Posted by vandana on Sun, 17 May 2020 01:03:52 -0700

Jenkins+maven+gitlab+Tomcat auto deployment version update and rollback

Implementation effect of this blog: combined with maven+gitlab, you can use Jenkins to implement version iterative update and version rollback operations for tomcat servers in different environments (test and online environments). After deployment, you only need to click a few times. 1, Environmental preparation system IP host name Running s ...

Posted by John Rowe on Tue, 05 May 2020 19:45:51 -0700

Spring boot docker Jenkins automatic deployment and image upload

springboot + docker + jenkins automatic deployment project. jenkins, mysql and redis are all operated by docker without using virtual machine. They are running on Alibaba cloud server (centos7) 1. Don't talk about the preparatory work 2. Create a new Dockerfile in the root directory of the project The contents of the Dockerfile file are: #base ...

Posted by MyWebAlias on Mon, 04 May 2020 02:13:46 -0700

Container Mirror Construction for OS Foundation Environment, JDK Environment, jenkins.war, etc.

1. Build os basic mirror 1) Make your own os mirror Dockerfile, note that the first letter "D" of the Dockerfile name must be capitalized, otherwise it will not be recognized when you build it [root@k8s centos7.6]# cat Dockerfile #Basic Mirror Source, download centos:7.6.1810 in dockerhub beforehand FROM centos:7.6.1810 ...

Posted by Ravenous on Sun, 03 May 2020 12:52:47 -0700

Building Jenkins as code

This article starts from: Jenkins Chinese community Original link By Amet Umerov Translator: s1mple   Building Jenkins as code This paper mainly introduces the specific method of Jenkins "configuration as code" mode, and explains the mode with tools and scripts In our company, we try t ...

Posted by GregArtemides on Wed, 08 Apr 2020 02:15:11 -0700

Jenkins pipeline syntax-declarative

1: Introduction Details can be found in the w3c tutorial https://www.w3cschool.cn/jenkins/jenkins-jg9528pb.html 1:jenkins pipeline is divided into declarative and script 2: The advantage of declarative is simplicity, let's not say much else. See below 2: Overview of declarative Pipeline pipeline { ...

Posted by tnkannan on Sat, 14 Mar 2020 22:45:45 -0700