docker.sh
741 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-datasync-producer/starter/target/yoho-datasync-producer.jar
#启动的脚本 java -jar XX.jar
#运行的预计内存:1000M
#访问的端口:8080
#日志的路径:/Data/logs/yoho-datasync-producer
#健康检查标识(需要返回200):http://localhost:8080/datasync-producer/actuator/health
#################################################################
cd $1
mvn clean package -DskipTests