From a77428143fbbdbd5b8000aa7411eb34728a7fc09 Mon Sep 17 00:00:00 2001 From: Donal McBreen Date: Fri, 28 Apr 2023 14:19:15 +0100 Subject: [PATCH] Fix the integration test healthcheck The alpine nginx container doesn't contain curl, so let's override the healthcheck command to use wget. --- test/integration/docker/deployer/app/config/deploy.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/integration/docker/deployer/app/config/deploy.yml b/test/integration/docker/deployer/app/config/deploy.yml index 5ac25b14..bd97dc36 100644 --- a/test/integration/docker/deployer/app/config/deploy.yml +++ b/test/integration/docker/deployer/app/config/deploy.yml @@ -10,5 +10,4 @@ registry: builder: multiarch: false healthcheck: - path: / - port: 80 + cmd: wget -qO- http://localhost > /dev/null