mirror of
https://github.com/kdave/btrfs-progs
synced 2024-12-11 17:06:32 +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>
14 lines
271 B
Bash
Executable File
14 lines
271 B
Bash
Executable File
#!/bin/sh
|
|
# Rebuild all docker images
|
|
# Run after: images-base-update
|
|
|
|
for dir in ci-*; do
|
|
echo "Build $dir"
|
|
cd "$dir"
|
|
# Do not build images with any stale branch snapshot, scripts ran
|
|
# locally will update that as needed
|
|
rm devel.tar.gz
|
|
./docker-build
|
|
cd ..
|
|
done
|