74bbf62c21
Signed-off-by: Nico Schottelius <nico@nico-notebook.schottelius.org>
15 lines
479 B
Bash
Executable file
15 lines
479 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
docker build -t ungleich-certbot .
|
|
|
|
while [ $# -ge 1 ]; do
|
|
tag=$1; shift
|
|
git tag -a -m "Version $tag" $tag
|
|
git push --tags
|
|
docker tag ungleich-certbot:latest ungleich/ungleich-certbot:${tag}
|
|
docker tag ungleich-certbot:latest harbor.ungleich.svc.p10.k8s.ooo/ungleich-public/ungleich-certbot:${tag}
|
|
docker push ungleich/ungleich-certbot:${tag}
|
|
docker push harbor.ungleich.svc.p10.k8s.ooo/ungleich-public/ungleich-certbot:${tag}
|
|
done
|