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.
21 lines
284 B
21 lines
284 B
4 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 ${key}
|
||
|
docker tag ${key} ${value}
|
||
|
docker push ${value}
|
||
|
done < "$file"
|
||
|
|
||
|
else
|
||
|
echo "$file not found."
|
||
|
fi
|
||
|
|