From 1b4928a94ee59818d87263ad0b0593538ff33bb9 Mon Sep 17 00:00:00 2001 From: Carlo Mion Date: Wed, 17 Apr 2024 09:22:06 +0200 Subject: [PATCH] fix docker healthcheck --- .github/docker-compose.ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/docker-compose.ci.yml b/.github/docker-compose.ci.yml index 3161f44..2c6fee6 100644 --- a/.github/docker-compose.ci.yml +++ b/.github/docker-compose.ci.yml @@ -15,7 +15,7 @@ services: restart: 'no' # Define a healthcheck to wait for the postgres container to be online healthcheck: - test: ["pg_isready"] + test: ["CMD", "pg_isready"] interval: 10s timeout: 5s retries: 5