mirror of
https://github.com/kdave/btrfs-progs
synced 2024-12-12 09:26:31 +00:00
335116e359
Add new script to upload updated images to my docker hub, add comments in which order. Signed-off-by: David Sterba <dsterba@suse.com>
17 lines
298 B
Bash
Executable File
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
|