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.
k8s-for-docker-desktop/sync_images.sh

21 lines
284 B

#!/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