Use MariaDB instead of MySQL also in tests

This commit is contained in:
Jyri-Petteri Paloposki 2025-06-30 00:47:43 +03:00
parent 2eb54b1c3e
commit 63d2060dc1

View file

@ -1,9 +1,9 @@
services:
db:
image: mysql:5.7
image: mariadb:lts
environment:
MYSQL_ALLOW_EMPTY_PASSWORD: 1
MYSQL_DATABASE: ${TRACKS_DB:-tracks}
MARIADB_ALLOW_EMPTY_ROOT_PASSWORD: 1
MARIADB_DATABASE: ${TRACKS_DB:-tracks}
web:
build:
context: ..