From 4783f2f215622d87a090613bb2405f7a13765c74 Mon Sep 17 00:00:00 2001 From: skjnldsv Date: Thu, 20 Feb 2025 19:39:33 +0100 Subject: [PATCH] chore(cypress): also log the current server image sha Signed-off-by: skjnldsv --- cypress/dockerNode.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cypress/dockerNode.ts b/cypress/dockerNode.ts index bc58e707939..5da0ae96ad7 100644 --- a/cypress/dockerNode.ts +++ b/cypress/dockerNode.ts @@ -49,6 +49,10 @@ export const startNextcloud = async function(branch: string = getCurrentGitBranc reject(err) } })) + + const digest = await (await docker.getImage(SERVER_IMAGE).inspect()).RepoDigests.at(0) + const sha = digest?.split('@').at(1) + console.log('├─ Using image ' + sha) console.log('└─ Done') } catch (e) { console.log('└─ Failed to pull images')