1 Star 0 Fork 7

小金子/DevOpsGPT

forked from blackldh/DevOpsGPT 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build.sh 568 Bytes
一键复制 编辑 原始数据 按行查看 历史
booboosui 提交于 2023-08-16 16:35 . feat(run): support docker build and run
#!/bin/bash
# Get the current commit SHA
COMMIT_SHA=$(git rev-parse HEAD)
# Get the current date in the format YYYYMMDD
CURRENT_DATE=$(date +%Y%m%d)
# Construct the new tag
NEW_TAG="${CURRENT_DATE}-${COMMIT_SHA:0:7}"
# Build the Docker image with the new tag
docker build -t "${DOCKER_REPO}:${NEW_TAG}" -t "${DOCKER_REPO}:latest" -f Dockerfile .
# Login to Docker Hub
echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
# Push the Docker image with the new tag
docker push "${DOCKER_REPO}:${NEW_TAG}"
docker push "${DOCKER_REPO}:latest"
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/littlegold/DevOpsGPT.git
[email protected]:littlegold/DevOpsGPT.git
littlegold
DevOpsGPT
DevOpsGPT
master

搜索帮助