加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.sh 507 Bytes
一键复制 编辑 原始数据 按行查看 历史
shellrock 提交于 2015-09-01 16:15 . build nginx 1.8.0
#!/bin/bash
set -e
export CON_NAME=nginx_t
export REG_URL=d.nicescale.com:5000
export IMAGE=nginx
export TAGS="1.8 1.8.0"
export BASE_IMAGE=microimages/alpine
docker pull $REG_URL/$BASE_IMAGE
docker tag -f $REG_URL/$BASE_IMAGE $BASE_IMAGE
docker build -t $REG_URL/microimages/$IMAGE .
#./test.sh
echo "---> Starting push $REG_URL/microimages/$IMAGE:$VERSION"
for t in $TAGS; do
docker tag -f $REG_URL/microimages/$IMAGE $REG_URL/microimages/$IMAGE:$t
done
docker push $REG_URL/microimages/$IMAGE
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化