update build.sh for pushing to harbor

This commit is contained in:
Nico Schottelius 2021-12-21 16:25:17 +01:00
parent a12878f681
commit 39a119175f
1 changed files with 5 additions and 0 deletions

View File

@ -10,4 +10,9 @@ while [ $# -ge 1 ]; do
git push --tags
docker tag ungleich-certbot:latest ungleich/ungleich-certbot:${tag}
docker push ungleich/ungleich-certbot:${tag}
# ungleich registry, slowly superseeding hub.docker.com
url=harbor.ungleich.svc.p10.k8s.ooo/ungleich-public/ungleich-certbot
docker tag ungleich-certbot:latest ${url}:${tag}
docker push ${url}:${tag}
done