docker.sh 641 Bytes
#!/bin/bash
# cd $1 :where is the jenkins workspace
# 需要维护以下的信息 :
#################################################################
#项目类型:Springboot、node、tomcat
#git路径:git@git.yoho.cn:datasync/yoho-datasync-producer.git
#打包脚本:mvn clean package -DskipTests
#打包完成后存放路径:yoho-rt-shop/target/yoho-rt-shop-*.jar
#启动的脚本  java -jar XX.jar
#运行的预计内存:1000M
#访问的端口:8080
#健康检查标识(需要返回200):localhost:8080/yohomars/actuator
#################################################################
cd $1
mvn clean package -DskipTests