From 59b1cb48eb366e1366fd89b8d017af81dba0d3b6 Mon Sep 17 00:00:00 2001 From: Meier Lukas Date: Wed, 19 Feb 2025 20:20:38 +0100 Subject: [PATCH] test: pin pihole container for tests to v5 until v6 is implemented (#2368) --- packages/integrations/test/pi-hole.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/integrations/test/pi-hole.spec.ts b/packages/integrations/test/pi-hole.spec.ts index 23f8ef425..558406ab7 100644 --- a/packages/integrations/test/pi-hole.spec.ts +++ b/packages/integrations/test/pi-hole.spec.ts @@ -58,7 +58,7 @@ describe("Pi-hole integration", () => { }); const createPiHoleContainer = (password: string) => { - return new GenericContainer("pihole/pihole:latest") + return new GenericContainer("pihole/pihole:2024.07.0") // v5 .withEnvironment({ WEBPASSWORD: password, })