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