aboutsummaryrefslogtreecommitdiff
path: root/leg-kolla-push-images
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <marcin.juszkiewicz@linaro.org>2018-05-15 22:28:04 +0200
committerMarcin Juszkiewicz <marcin.juszkiewicz@linaro.org>2018-05-16 13:12:59 +0000
commit76e91cca1fe311e8e524c6f1084cc8675391c9a9 (patch)
tree36c1632613f1a7aee622c28b9c3d36c93e30c787 /leg-kolla-push-images
parentd6bd9686f20341b77f4eb075b4f742b786689398 (diff)
leg-kolla-push-images: push ONLY requested tag
Change-Id: I9131d11a6cb4e375bd5a235ce5ac25e6230bdfd1
Diffstat (limited to 'leg-kolla-push-images')
-rw-r--r--leg-kolla-push-images/build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/leg-kolla-push-images/build.sh b/leg-kolla-push-images/build.sh
index b300a0a7..27b250fb 100644
--- a/leg-kolla-push-images/build.sh
+++ b/leg-kolla-push-images/build.sh
@@ -25,7 +25,7 @@ echo "Going to push ${amount} of images with '${kolla_tag}' tag."
for image in $(cat list-of-images)
do
echo "Pushing ${current} of ${amount} - ${image}"
- docker push $image
+ docker push $image:${kolla_tag}
((current++))
done