diff --git a/.local-manifest/db/mariadb-stateful-set.yaml b/.local-manifest/db/mariadb-stateful-set.yaml index 919fbd1ad..c02a996f0 100644 --- a/.local-manifest/db/mariadb-stateful-set.yaml +++ b/.local-manifest/db/mariadb-stateful-set.yaml @@ -29,7 +29,7 @@ spec: image: mariadb:11.8 imagePullPolicy: Always args: - - mysqld + - mariadbd - --character-set-server=utf8mb4 - --collation-server=utf8mb4_unicode_ci env: diff --git a/compose.yaml b/compose.yaml index 2470ca9b4..a82839080 100644 --- a/compose.yaml +++ b/compose.yaml @@ -272,9 +272,9 @@ services: environment: MYSQL_ROOT_PASSWORD: password MYSQL_DATABASE: neoshowcase - command: mysqld --character-set-server=utf8 --collation-server=utf8_general_ci + command: mariadbd --character-set-server=utf8 --collation-server=utf8_general_ci healthcheck: - test: mysql --user=root --password=password --execute "SHOW DATABASES;" + test: mariadb --user=root --password=password --execute "SHOW DATABASES;" interval: 1s timeout: 10s retries: 60