From af4a85fb543cbb2e82cf0919c52136f2bef0e7ba Mon Sep 17 00:00:00 2001 From: Steve Boyd Date: Wed, 6 Jul 2022 19:28:34 +1200 Subject: [PATCH] FIX Increase health retries --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f6f139e..78155c9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -115,7 +115,7 @@ jobs: MYSQL_DATABASE: SS_mysite ports: - 3357:3306 - options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 + options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=10 mysql80: image: mysql:8.0 env: @@ -124,12 +124,12 @@ jobs: MYSQL_DATABASE: SS_mysite ports: - 3380:3306 - options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 + options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=10 postgres: image: postgres env: POSTGRES_PASSWORD: postgres - options: --health-cmd="pg_isready" --health-interval=10s --health-timeout=5s --health-retries=5 + options: --health-cmd="pg_isready" --health-interval=10s --health-timeout=5s --health-retries=10 ports: - 5432:5432