comparison scripts/updates-pull.sh @ 574:9afc8cb478f6

Domain changed from ssdt.io to ssdt-ohio.org
author Marc Davis <marc.davis@mcoecn.org>
date Wed, 04 Sep 2024 11:36:41 -0400
parents fea886ba7279
children
comparison
equal deleted inserted replaced
572:5c9d90a1673a 574:9afc8cb478f6
18 FILTER=${2:-label=io.ssdt.app$APP} 18 FILTER=${2:-label=io.ssdt.app$APP}
19 while read -a line 19 while read -a line
20 do 20 do
21 repo=${line[0]} 21 repo=${line[0]}
22 tag=${line[1]} 22 tag=${line[1]}
23 if [[ $repo == docker.ssdt.io* && $tag != *none* ]] 23 if [[ $repo == docker.ssdt-ohio.org* && $tag != *none* ]]
24 then 24 then
25 echo "docker pull ${repo}:${tag}" 25 echo "docker pull ${repo}:${tag}"
26 docker pull ${repo}:${tag} 26 docker pull ${repo}:${tag}
27 fi 27 fi
28 done < <(docker images --filter "$FILTER") 28 done < <(docker images --filter "$FILTER")