fix(ci): replace healthcheck command

According to https://github.com/MariaDB/mariadb-docker/issues/512#issuecomment-1588619808
the mysqladmin command has been removed from the image.

Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
Tilman Vatteroth 2023-06-19 19:50:00 +02:00
parent 5a569a2f25
commit f29a30d94b

View file

@ -63,7 +63,9 @@ jobs:
MYSQL_PASSWORD: hedgedoc
MYSQL_DATABASE: hedgedoc
MYSQL_ROOT_PASSWORD: hedgedoc
options: --health-cmd "mysqladmin ping" --health-interval 10s --health-timeout 5s --health-retries 10
MARIADB_MYSQL_LOCALHOST_USER: 1
MARIADB_MYSQL_LOCALHOST_GRANTS: USAGE
options: --health-cmd "healthcheck.sh --su-mysql --connect --innodb_initialized" --health-interval 10s --health-timeout 5s --health-retries 10
ports:
- 3306:3306
steps: