1 Star 1 Fork 1

PolarisMesh/polaris-console

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
build_docker.sh 575 Bytes
一键复制 编辑 原始数据 按行查看 历史
pemako 提交于 2022-04-15 12:20 . Update build_docker.sh
#!/bin/bash
workdir=$(dirname $(realpath $0))
# build docker file
if [ $# != 1 ]; then
echo "e.g.: bash $0 v1.0"
exit 1
fi
docker_tag=$1
echo "docker repository : polarismesh/polaris-console, tag : ${docker_tag}"
bash build.sh
if [ $? != 0 ]; then
echo "build polaris-console failed"
exit 1
fi
docker build --network=host -t polarismesh/polaris-console:${docker_tag} ./
docker push polarismesh/polaris-console:${docker_tag}
docker tag polarismesh/polaris-console:${docker_tag} polarismesh/polaris-console:latest
docker push polarismesh/polaris-console:latest
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/polarismesh/polaris-console.git
git@gitee.com:polarismesh/polaris-console.git
polarismesh
polaris-console
polaris-console
main

搜索帮助