1 Star 0 Fork 611

奋斗ing/torna

forked from tanghc/torna 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
docker-build-push.sh 886 Bytes
一键复制 编辑 原始数据 按行查看 历史
Laerf 提交于 2023-06-29 11:40 . 自定义镜像
#!/bin/sh
# 构建docker并推送到阿里云
# 执行方式:sh docker-build-push.sh <版本号>
# 如:sh docker-build-push.sh 1.15.2
git pull
sh release.sh
echo "开始创建docker hub镜像:latest"
docker build -f Dockerfile.local -t registry.cn-hangzhou.aliyuncs.com/tanghc/torna:latest .
sleep 1
echo "推送镜像到docker hub:latest,执行命令:docker push registry.cn-hangzhou.aliyuncs.com/tanghc/torna:latest"
docker push registry.cn-hangzhou.aliyuncs.com/tanghc/torna:latest
sleep 1
# 如果有参数
if [ -n "${1}" ];then
echo "开始创建docker hub镜像:${1}"
docker build -f Dockerfile.local -t registry.cn-hangzhou.aliyuncs.com/tanghc/torna:${1} .
sleep 1
echo "推送镜像到docker hub:${1},执行命令:docker push registry.cn-hangzhou.aliyuncs.com/tanghc/torna:${1}"
docker push registry.cn-hangzhou.aliyuncs.com/tanghc/torna:${1}
fi
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/Mozart_1993/torna.git
[email protected]:Mozart_1993/torna.git
Mozart_1993
torna
torna
master

搜索帮助