From 788262ee66b57d5d881ca125d00dd5140cd69122 Mon Sep 17 00:00:00 2001 From: einhorn_b Date: Tue, 25 May 2021 11:03:28 +0200 Subject: [PATCH] try another db setup --- .github/workflows/test.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a50dc202c..f901294a5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -275,15 +275,18 @@ jobs: runs-on: ubuntu-latest needs: [build_test_community_server] services: - mariadb: - image: gradido/mariadb:test + mariadb: + image: mariadb/server:10.5 env: MARIADB_ALLOW_EMPTY_PASSWORD: 1 MARIADB_USER: root + MARIADB_DATABASE: gradido_community_test ports: - 3306:3306 - volumes: - - db_vol:/var/lib/mysql + options: --health-cmd="mysqladmin ping" + --health-interval=5s + --health-timeout=2s + --health-retries=3 steps: - name: Debug service run: echo "$(docker ps)"