加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
build_and_tag.sh 409 Bytes
一键复制 编辑 原始数据 按行查看 历史
Rookie 提交于 2024-05-14 15:42 . fix:部署
#!/bin/bash
# 生成当前时间
timestamp=$(date +%Y-%m-%d-%H-%M)
# Step 1: 构建镜像
docker build -t wanchong-h5:$timestamp .
# Step 2: 查找镜像的标签
image_id=$(docker images -q wanchong-h5:$timestamp)
# Step 3: 为镜像添加新的标签
docker tag $image_id ccr.ccs.tencentyun.com/catdogship/catdogship-h5:$timestamp
docker push ccr.ccs.tencentyun.com/catdogship/catdogship-h5:$timestamp
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化