1 Star 0 Fork 18

taot168/PolarisMesh

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build_docker.sh 627 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/bash
if [ $# != 4 ]; then
echo "e.g.: bash $0 polaris_mesh/polaris-server v1.0 docker_username docekr_user_password"
exit 1
fi
docker_repository=$1
docker_tag=$2
docker_username=$3
docker_password=$4
echo "docker repository : ${docker_repository}, tag : ${docker_tag}"
bash build.sh
if [ $? != 0 ]; then
echo "build polaris-server failed"
exit 1
fi
docker build --network=host -t ${docker_repository}:${docker_tag} ./
docker login --username=${docker_username} --password=${docker_password}
if [[ $? != 0 ]]; then
echo "docker login failed"
fi
docker push ${docker_repository}:${docker_tag}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/MyGirlLH/PolarisMesh.git
[email protected]:MyGirlLH/PolarisMesh.git
MyGirlLH
PolarisMesh
PolarisMesh
main

搜索帮助