Skip to content

Commit

Permalink
Merge pull request #382 from bodji/gcs
Browse files Browse the repository at this point in the history
Fix release script for image docker push
  • Loading branch information
bodji authored Nov 23, 2021
2 parents 148c474 + 54b02b3 commit b64cf26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion releaser/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ echo ""
echo " Push images to Docker Hub"
echo ""
for tag in latest $plik_release_version ; do
for image in $( docker images ls | grep ^rootgg/plik | grep -v release | grep -v builder | awk {'print $1'} | uniq ) ; do
for image in $( docker images | grep ^rootgg/plik | grep -v release | grep -v builder | awk {'print $1'} | uniq ) ; do
echo " - pushing $image:$tag to docker hub"
docker push $image:$tag
done
Expand Down

0 comments on commit b64cf26

Please sign in to comment.