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)"