From 367f42e0ba25c933b4a8f5d61a410d233bfac769 Mon Sep 17 00:00:00 2001 From: Shyim Date: Mon, 26 Aug 2024 10:34:04 +0200 Subject: [PATCH] ci: use mariadb instead of mysql --- compose.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/compose.yml b/compose.yml index 4b49129..dca417b 100644 --- a/compose.yml +++ b/compose.yml @@ -16,16 +16,16 @@ x-environment: &shopware services: database: - image: mysql:8.0-oracle + image: mariadb:11.4 environment: - MYSQL_ROOT_PASSWORD: shopware - MYSQL_USER: shopware - MYSQL_PASSWORD: shopware - MYSQL_DATABASE: shopware + MARIADB_ROOT_PASSWORD: shopware + MARIADB_USER: shopware + MARIADB_PASSWORD: shopware + MARIADB_DATABASE: shopware tmpfs: - /var/lib/mysql healthcheck: - test: [ "CMD", "mysqladmin" ,"ping", "-h", "localhost", "-pshopware" ] + test: [ "CMD", "mariadb-admin" ,"ping", "-h", "localhost", "-pshopware" ] timeout: 20s retries: 10