File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11[bumpversion]
2- current_version = 0.29.0
2+ current_version = 0.29.1
33commit = True
44message = Bumps version to {new_version}
55tag = False
Original file line number Diff line number Diff line change @@ -4,7 +4,15 @@ All notable changes to this project will be documented in this file.
44
55The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ ) and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
66
7- ### [ 0.28.7] ( https://github.com/plus3it/tardigrade-ci/releases/tag/0.29.0 )
7+ ### [ 0.29.1] ( https://github.com/plus3it/tardigrade-ci/releases/tag/0.29.1 )
8+
9+ ** Released** : 2026.04.01
10+
11+ ** Summary** :
12+
13+ * Pulls or builds image if not present in docker local storage
14+
15+ ### [ 0.29.0] ( https://github.com/plus3it/tardigrade-ci/releases/tag/0.29.0 )
816
917** Released** : 2026.03.30
1018
Original file line number Diff line number Diff line change @@ -545,7 +545,15 @@ docker/run: export target ?= help
545545docker/run : export entrypoint ?= entrypoint.sh
546546docker/run : export DOCKER_USERNS ?=
547547docker/run : | guard/env/TARDIGRADE_CI_PATH guard/env/TARDIGRADE_CI_PROJECT
548- @echo " [$@ ]: Running docker image"
548+ @ echo " [$@ ]: Checking the image '$( IMAGE_NAME) ' exists..."
549+ @ if docker image inspect $( IMAGE_NAME) > /dev/null 2>&1 ; \
550+ then \
551+ echo " [$@ ]: Using image found in local storage '$( IMAGE_NAME) ' -- To rebuild image, run 'make docker/build'" ; \
552+ else \
553+ echo " [$@ ]: Image '$( IMAGE_NAME) ' not found, trying to pull or build..." ; \
554+ docker pull $(IMAGE_NAME ) > /dev/null 2>&1 || $(SELF ) docker/build; \
555+ fi
556+ @ echo " [$@ ]: Running target " $(target ) " ..."
549557 userns=" " ; \
550558 if docker --version 2> /dev/null | grep -qi podman; then userns=" --userns=keep-id" ; elif [ -n " $( DOCKER_USERNS) " ]; then userns=" --userns=$( DOCKER_USERNS) " ; fi ; \
551559 docker run $(DOCKER_RUN_FLAGS ) \
You can’t perform that action at this time.
0 commit comments