From 721116a3169823ebe211b825d0fdeeb0aac7973c Mon Sep 17 00:00:00 2001 From: Rob Rudin Date: Thu, 9 Oct 2025 15:44:00 -0400 Subject: [PATCH] MLE-24531 Added echo of Docker image --- Jenkinsfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 83e12633..1dc1298b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -30,7 +30,9 @@ def runDockerCompose(String markLogicDockerImage) { docker-compose down -v || true sudo /usr/local/sbin/mladmin cleandata cd node-client-api + echo "Running docker compose with MarkLogic image: ''' + markLogicDockerImage + '''" MARKLOGIC_LOGS_VOLUME=/tmp MARKLOGIC_IMAGE=''' + markLogicDockerImage + ''' docker-compose up -d --build + echo "Waiting 60s for MarkLogic to be ready to accept connections" sleep 60s; ''' }