Modifications

This commit is contained in:
2024-08-21 16:12:01 +00:00
parent dde9d00c42
commit 759fd29718
2 changed files with 3 additions and 5 deletions
-2
View File
@@ -39,8 +39,6 @@ do
# pull the parent image from docker hub, if it doesn't already exist locally.
LOCAL_EXISTS=$(docker images --format "{{.Repository}}:{{.Tag}}" | grep -x ${UPSTREAM_IMAGE}:${UPSTREAM_IMAGE_TAG})
echo "LOCAL_EXISTS: $LOCAL_EXISTS"
echo "USE_LOCAL: $USE_LOCAL"
if [[ $USE_LOCAL == 1 && $LOCAL_EXISTS != "" ]]; then
echo "Using local image ${UPSTREAM_IMAGE}:${UPSTREAM_IMAGE_TAG}..."
else