1 Star 0 Fork 2.4K

反后/jetlinks-community

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
Clone or Download
build-and-push-docker.sh 415 Bytes
Copy Edit Raw Blame History
老周 authored 2020-09-04 09:54 . 构建时增加时间戳
#!/usr/bin/env bash
dockerImage=registry.cn-shenzhen.aliyuncs.com/jetlinks/jetlinks-standalone:$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)
./mvnw clean package -Dmaven.test.skip=true -Dmaven.build.timestamp="$(date "+%Y-%m-%d %H:%M:%S")"
if [ $? -ne 0 ];then
echo "构建失败!"
else
cd ./jetlinks-standalone || exit
docker build -t "$dockerImage" . && docker push "$dockerImage"
fi
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/billfan/jetlinks-community.git
git@gitee.com:billfan/jetlinks-community.git
billfan
jetlinks-community
jetlinks-community
master

Search