You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
282 B
19 lines
282 B
7 years ago
|
#/bin/bash
|
||
|
|
||
|
file="images.properties"
|
||
|
|
||
|
if [ -f "$file" ]
|
||
|
then
|
||
|
echo "$file found."
|
||
|
|
||
|
while IFS='=' read -r key value
|
||
|
do
|
||
|
#echo "${key}=${value}"
|
||
|
docker pull ${value}
|
||
|
docker tag ${value} ${key}
|
||
|
docker rmi ${value}
|
||
|
done < "$file"
|
||
|
|
||
|
else
|
||
|
echo "$file not found."
|
||
|
fi
|