osmith has uploaded this change for review. ( https://gerrit.osmocom.org/c/docker-playground/+/26443 )
Change subject: jenkins-common.sh: pull registry.osmocom.org imgs ...................................................................... jenkins-common.sh: pull registry.osmocom.org imgs Pull debian-stretch-titan from registry.osmocom.org if the repository is enabled. Otherwise the image gets only pulled the first time, and does not get updated once it becomes outdated. Related: OS#5336 Change-Id: I1cf998c21e4ee1f723c3b783703e339328377f3e --- M jenkins-common.sh 1 file changed, 3 insertions(+), 1 deletion(-) git pull ssh://gerrit.osmocom.org:29418/docker-playground refs/changes/43/26443/1 diff --git a/jenkins-common.sh b/jenkins-common.sh index 88d053c..3511c02 100644 --- a/jenkins-common.sh +++ b/jenkins-common.sh @@ -121,10 +121,12 @@ for i in $@; do # Don't build images that are available on the private - # registry, if using it. + # registry, if using it. Instead, pull the images to make sure + # they are up-to-date. if [ "$REGISTRY_HOST" = "registry.osmocom.org" ]; then case "$i" in debian-stretch-titan) + docker pull "$REGISTRY_HOST/$USER/$i" continue ;; esac -- To view, visit https://gerrit.osmocom.org/c/docker-playground/+/26443 To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings Gerrit-Project: docker-playground Gerrit-Branch: master Gerrit-Change-Id: I1cf998c21e4ee1f723c3b783703e339328377f3e Gerrit-Change-Number: 26443 Gerrit-PatchSet: 1 Gerrit-Owner: osmith <osm...@sysmocom.de> Gerrit-MessageType: newchange