Skip to content

Commit e724577

Browse files
authored
Merge pull request #228 from stellarwp/bugfix/mariadb-error-2026-hy000
Fix: Error: Failed to get current SQL modes. Reason: ERROR 2026 (HY000) - Bump mariadb to 11.8.3
2 parents db954f4 + 35195a3 commit e724577

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

slic-stack.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ volumes:
99
services:
1010

1111
db:
12-
image: ${SLIC_DB_IMAGE:-mariadb:10.7.8}
12+
image: ${SLIC_DB_IMAGE:-mariadb:11.8.3}
1313
# Not specifying a platform will ignore the setting and use the current platform.
1414
platform: ${SLIC_DB_PLATFORM:-}
1515
networks:
@@ -19,8 +19,8 @@ services:
1919
environment:
2020
MYSQL_DATABASE: test
2121
MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD:-root}
22-
healthcheck: # The `test` db should exist.
23-
test: mysqlshow -u root -p${MYSQL_ROOT_PASSWORD:-root} test
22+
healthcheck:
23+
test: ["CMD", "healthcheck.sh", "--connect", "--innodb_initialized"]
2424
start_period: 5s
2525
interval: 1s
2626
timeout: 3s

0 commit comments

Comments
 (0)