From 357398cecdb1e198609b777872ea24e0c24cef2d Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Mon, 19 Jun 2023 09:58:08 +0200 Subject: [PATCH] php: Fix mysql container startup --- .github/workflows/php.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index d80731442d..00c64a228c 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -66,7 +66,7 @@ jobs: MYSQL_USER: icinga_unittest MYSQL_PASSWORD: icinga_unittest options: >- - --health-cmd "mysql -s -uroot -proot -e'SHOW DATABASES;' 2> /dev/null | grep icinga_unittest > test" + --health-cmd "mariadb -s -uroot -proot -e'SHOW DATABASES;' 2> /dev/null | grep icinga_unittest > test" --health-interval 10s --health-timeout 5s --health-retries 5