btrfs-progs/ci/images/images-push-all
David Sterba 335116e359 btrfs-progs: ci: update image management scripts
Add new script to upload updated images to my docker hub, add comments
in which order.

Signed-off-by: David Sterba <dsterba@suse.com>
2024-01-26 05:52:33 +01:00

17 lines
298 B
Bash
Executable file

#!/bin/sh
# After pull and build push all images to the hub
# Run after: images-build-all
echo "You are not supposed to run this"
exit 1
hubname=kdave
tag=latest
for dir in ci-*; do
echo "Enter $dir"
dir="${dir,,}"
echo docker push "$hubname/$dir:$tag"
docker push "$hubname/$dir:$tag"
done