From d3fc7fca73e4628c36e152880391390fb3e92c4c Mon Sep 17 00:00:00 2001 From: Roxie Gibson Date: Mon, 17 Jan 2022 15:45:30 +0000 Subject: [PATCH] added print --- plugin.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugin.sh b/plugin.sh index 9790d39..c5fa28c 100755 --- a/plugin.sh +++ b/plugin.sh @@ -67,7 +67,8 @@ run_stack_deploy() { if [[ ! -z "${PLUGIN_REG_USER}" ]] && [[ ! -z "${PLUGIN_REG_PASS}" ]]; then echo "--- discovered secrets, assuming private registry, logging in ---" docker login -u "${PLUGIN_REG_USER}" -p "${PLUGIN_REG_PASS}" - docker image pull "${PLUGIN_IMAGE}" + docker pull "${PLUGIN_IMAGE}" + echo "${PLUGIN_IMAGE}" docker -H "$REMOTE_DOCKER_HOST" stack deploy -c "$PLUGIN_COMPOSE" "$PLUGIN_STACK" else docker -H "$REMOTE_DOCKER_HOST" stack deploy -c "$PLUGIN_COMPOSE" "$PLUGIN_STACK"