溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Docker容器中怎么使用jenkins部署web項(xiàng)目

發(fā)布時(shí)間:2022-03-25 09:34:32 來(lái)源:億速云 閱讀:301 作者:iii 欄目:互聯(lián)網(wǎng)科技

這篇文章主要講解了“Docker容器中怎么使用jenkins部署web項(xiàng)目”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來(lái)研究和學(xué)習(xí)“Docker容器中怎么使用jenkins部署web項(xiàng)目”吧!

(1)需要安裝docker容器,在docker容器內(nèi)安裝jenkins,gogs,tomcat。   新建maven項(xiàng)目,添加findbugs plugin。

使用docker啟動(dòng)jenkins,gogs,tomcat的命令gogs :

復(fù)制代碼 代碼如下:

 docker run -itd -p 10022:22 -p 10080:3000 --restart=always --privileged=true --name=gogs -v /var/gogs:/data gogs/gogs

jenkins:

復(fù)制代碼 代碼如下:

docker run -itd -p 8800:8080 -p 50000:50000 --restart=always --privileged=true --name=jenkins -v /home/jenkins:/var/jenkins_home jenkins

tomcat:

復(fù)制代碼 代碼如下:

docker run -itd -p 8080:8080  --restart=always --privileged=true --name=tomcat -v /usr/local/tomcat:/var/tomcat_home

tomcat:8.0

復(fù)制代碼 代碼如下:

docker run -itd -p 8080:8080  --restart=always --privileged=true --name=tomcat -v /usr/local/tomcat:/home/tomcat/tomcat_home tomcat:8.0

后來(lái)啟動(dòng)tomcat的命令:

解釋?zhuān)?br/>

-i :表示以交互形式打開(kāi)
-d :后臺(tái)運(yùn)行
-t :偽終端
-p :指定端口 前面的是你指定用戶用來(lái)訪問(wèn)的端口號(hào),后面的是指該軟件本來(lái)默認(rèn)的端口號(hào)
--restart=always : 使得程序總是處于運(yùn)行狀態(tài),自動(dòng)啟動(dòng)
--privileged=true : 和防火墻有關(guān),selinux權(quán)限 (設(shè)置這個(gè)程序不會(huì)受防火墻的影響)
--name : 指定容器運(yùn)行的名稱(chēng)
 -v : 容器掛載,前面是實(shí)實(shí)在在存在的數(shù)據(jù)卷,后面是掛載目錄

最后的 gogs/gogs   jenkins  tomcat:8.0 是鏡像名,docker pull命令后面跟的參數(shù)

(2)在jenkins上安裝插件: maven intergration plugin ,gogs-plugin ,publish over ssh, findbugs-plugin,deploy to a container (jdk ,git 都使用docker中默認(rèn)的,安裝jenkins的時(shí)候不需要配置這兩項(xiàng)的路徑)

(3)tomcat需要配置用戶: 通過(guò) find / -name "tomcat" ,找到tomcat的安裝路徑,再將內(nèi)容添加到  conf/tomcat-users.xml文件中  <tomcat-users>大概這個(gè)位置</tomcat-users>

<role rolename="admin"/>
 <role rolename="manager"/>
 <role rolename="manager-gui"/>
 <role rolename="manager-script"/>
 <user username="tomcat" password="tomcat" roles="admin,manager,manager-gui,manager-script"/>

(4)gogs創(chuàng)建倉(cāng)庫(kù)時(shí),記得私有化,配置git鉤子,在.git/hooks/目錄下添加 pre-commit 文件,pre-commit 文件中的內(nèi)容如下

#!/bin/sh
#execute shell before commit,check the code
mvn clean install

#recieve the execute result
result=$?
#output the result ,if the result less or equal 0 ,it proves this project has bugs,otherwise don't.
echo $result

if [ $result -ne 0 ]
then
  mvn findbugs:gui
  echo "regretful! build failure"
  exit 1
else
  echo "congraturation! build success"
  exit 0
fi

注釋?zhuān)?配置webhook時(shí),如果推送的時(shí)候出現(xiàn)了 403錯(cuò)誤,要查看jenkins中是否安裝了 gogs-plugin這個(gè)插件(因?yàn)槲耶?dāng)時(shí)出錯(cuò)了半天,就是因?yàn)闆](méi)有安裝gogs-plugin)

webhook示例:http://172.150.15.9:8800/gogs-webhook/?job=webdemoin7   //webdemoin7是我的enkins項(xiàng)目名

(5)創(chuàng)建maven項(xiàng)目時(shí),pom.xml中的內(nèi)容

<project xmlns="http://maven.apache.org/pom/4.0.0" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance"
  xsi:schemalocation="http://maven.apache.org/pom/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  <modelversion>4.0.0</modelversion>
  <groupid>cn.demo</groupid>
  <artifactid>webdemoin7</artifactid>
  <packaging>war</packaging> <!-- 打包為war包 -->
  <version>0.0.1-snapshot</version>
  <name>webdemoin7 maven webapp</name>
  <url>http://maven.apache.org</url>
  <build>
    <finalname>webdemoin7</finalname>
    <plugins>
      <plugin>
        <inherited>true</inherited>
        <groupid>org.apache.maven.plugins</groupid>
        <artifactid>maven-compiler-plugin</artifactid>
        <version>3.5.1</version>
        <configuration>
          <source>${compiler.source}</source>
          <target>${compiler.target}</target>
          <encoding>${project.build.sourceencoding}</encoding>
          <compilerarguments>
            <extdirs>${project.basedir}/src/main/webapp/web-inf/lib</extdirs>
          </compilerarguments>
        </configuration>
      </plugin>
      <!-- 指定執(zhí)行的主類(lèi)(main方法所在的類(lèi))-->
      <plugin> 
        <groupid>org.apache.maven.plugins</groupid> 
        <artifactid>maven-jar-plugin</artifactid> 
        <version>2.6</version> 
        <configuration> 
          <archive> 
          <!-- 添加index則不從mainfest中讀取classpath,而是從index.list中讀取 --> 
          <!-- <index>true</index> --> 
            <manifest> 
              <mainclass>cn.demo.javademoin7.application.applicationmain</mainclass> 
            </manifest> 
            
          </archive> 
        </configuration> 
      </plugin> 
      
      <!-- findbugs插件 :靜態(tài)檢查代碼的錯(cuò)誤-->
    <plugin>
      <groupid>org.codehaus.mojo</groupid>
      <artifactid>findbugs-maven-plugin</artifactid>
      <version>3.0.4</version>
      <configuration>
        <!-- 設(shè)置分析工作的等級(jí),可以為min、default和max -->
        <effort>low</effort>
        <!-- low、medium和high (low最嚴(yán)格) -->
        <threshold>medium</threshold>
        <failonerror>true</failonerror>
        <includetests>true</includetests>
        <!--findbugs需要忽略的錯(cuò)誤的配置文件-->
        <!-- <excludefilterfile>compile.bat</excludefilterfile> -->
      </configuration> 
      <executions>
        <execution>
          <id>run-findbugs</id>
          <!-- 在install 階段觸發(fā)執(zhí)行findbugs檢查,比如執(zhí)行 mvn clean package-->
          <phase>install</phase> 
          <goals>
            <goal>check</goal>
          </goals>
        </execution>
      </executions>
    </plugin>
      
    </plugins>
  </build>
  <properties>
    <project.build.sourceencoding>utf-8</project.build.sourceencoding>
    <compiler.source>1.7</compiler.source>
    <compiler.target>1.7</compiler.target>

    <!-- servlet/jsp/el (2.4/2.0/?)(2.5/2.1/2.1),(3.0/2.2/2.2),(3.1/2.3/3.0) -->
    <servlet.version>3.1.0</servlet.version>
    <jsp.version>2.3.1</jsp.version>
    <jstl.version>1.2</jstl.version>
    <junit.version>4.12</junit.version>
  </properties>
  <dependencies>
    <dependency>
      <groupid>org.apache.maven.plugins</groupid>
      <artifactid>maven-clean-plugin</artifactid>
      <version>2.5</version>
    </dependency>
    <dependency>
      <groupid>junit</groupid>
      <artifactid>junit</artifactid>
      <version>${junit.version}</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupid>javax.servlet</groupid>
      <artifactid>javax.servlet-api</artifactid>
      <version>${servlet.version}</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupid>javax.servlet.jsp</groupid>
      <artifactid>javax.servlet.jsp-api</artifactid>
      <version>${jsp.version}</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupid>javax.servlet</groupid>
      <artifactid>jstl</artifactid>
      <version>${jstl.version}</version>
    </dependency>
  </dependencies>
</project>

(6)jenkins構(gòu)建項(xiàng)目時(shí),前面的配置一如往常,可以查看其它的案例

主要配置 源碼管理,構(gòu)建觸發(fā)器,build,構(gòu)建后操作

Docker容器中怎么使用jenkins部署web項(xiàng)目

然后部署可以訪問(wèn)了

http://172.150.12.32:8080/webdemoin7

書(shū)寫(xiě)shell腳本來(lái)構(gòu)建java web鏡像和容器:

1.在post steps目錄中選擇

Docker容器中怎么使用jenkins部署web項(xiàng)目

填寫(xiě)如下shell腳本

#!/bin/bash
imageid=`sudo docker images|grep -i test|awk '{print $3}'`
echo "test鏡像id = "$imageid 
containid=`sudo docker ps -a |grep -i test|awk '{print $1}'`
echo "test容器id = "$containid
project=/var/jenkins_home/workspace/test/src/main/resources/docker
#判斷是否存在舊的test鏡像
if test -z "$imageid"
then
echo "test鏡像不存在"
else 
if test -z "$containid"
then
echo "test容器不存在"
else
echo "test容器將要被執(zhí)行stop命令"
sudo docker stop test
echo "test容器處于stop狀態(tài)"
fi
echo "舊test鏡像將要被刪除"
sudo docker rmi -f $imageid
echo "成功刪除舊test鏡像" 
fi
#dockerfile所在目錄
sudo mv $project/dockerfile /usr
#切換目錄至usr
cd /usr
#將tms war包拷貝到dockerfile所在目錄下
sudo mv /var/jenkins_home/workspace/test/target/test.war . 
echo "test鏡像構(gòu)建中:------->"
#構(gòu)建tms鏡像
sudo docker build -t test .
#判斷是否存在舊的tms容器
if test -z "$containid"
then
echo "test容器不存在"
else 
echo "舊test容器將要被刪除"
sudo docker rm -f $containid
echo "成功刪除舊test容器" 
fi
#創(chuàng)建容器
echo "開(kāi)始創(chuàng)建新test容器"
sudo docker run -d -p 8088:8080 -v /usr/logs:/usr/tomcat/logs --name test test

echo "新test容器創(chuàng)建成功"

2.點(diǎn)擊立即保存,立即構(gòu)建

Docker容器中怎么使用jenkins部署web項(xiàng)目

感謝各位的閱讀,以上就是“Docker容器中怎么使用jenkins部署web項(xiàng)目”的內(nèi)容了,經(jīng)過(guò)本文的學(xué)習(xí)后,相信大家對(duì)Docker容器中怎么使用jenkins部署web項(xiàng)目這一問(wèn)題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI