btrfs-progs/ci/images/images-base-update
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

11 lines
198 B
Bash
Executable File

#!/bin/sh
# Update all base images from Dockefile
# Run before: images-build-all
for dir in ci-*; do
echo "Update $dir"
cd "$dir"
docker pull `awk '/^FROM/ {print $2}' < Dockerfile`
cd ..
done