真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

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

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

創(chuàng)新互聯(lián)堅(jiān)持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:網(wǎng)站制作、做網(wǎng)站、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時(shí)代的晉中網(wǎng)站設(shè)計(jì)、移動(dòng)媒體設(shè)計(jì)的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!

(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的命令:

解釋:

-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)行的名稱
 -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文件中  大概這個(gè)位置


 
 
 
 

(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

注釋: 配置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)容


  4.0.0
  cn.demo
  webdemoin7
  war 
  0.0.1-snapshot
  webdemoin7 maven webapp
  http://maven.apache.org
  
    webdemoin7
    
      
        true
        org.apache.maven.plugins
        maven-compiler-plugin
        3.5.1
        
          ${compiler.source}
          ${compiler.target}
          ${project.build.sourceencoding}
          
            ${project.basedir}/src/main/webapp/web-inf/lib
          
        
      
      
       
        org.apache.maven.plugins 
        maven-jar-plugin 
        2.6 
         
           
           
           
             
              cn.demo.javademoin7.application.applicationmain 
             
            
           
         
       
      
      
    
      org.codehaus.mojo
      findbugs-maven-plugin
      3.0.4
      
        
        low
        
        medium
        true
        true
        
        
       
      
        
          run-findbugs
          
          install 
          
            check
          
        
      
    
      
    
  
  
    utf-8
    1.7
    1.7

    
    3.1.0
    2.3.1
    1.2
    4.12
  
  
    
      org.apache.maven.plugins
      maven-clean-plugin
      2.5
    
    
      junit
      junit
      ${junit.version}
      test
    
    
      javax.servlet
      javax.servlet-api
      ${servlet.version}
      provided
    
    
      javax.servlet.jsp
      javax.servlet.jsp-api
      ${jsp.version}
      provided
    
    
      javax.servlet
      jstl
      ${jstl.version}
    
  

(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)證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!


文章名稱:Docker容器中怎么使用jenkins部署web項(xiàng)目
文章源于:http://weahome.cn/article/jdpesc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部