mirror of
https://github.com/kdave/btrfs-progs
synced 2025-01-14 17:50:58 +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>
11 lines
198 B
Bash
Executable File
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
|