Skip to content

Commit

Permalink
ci: use mariadb instead of mysql
Browse files Browse the repository at this point in the history
  • Loading branch information
shyim authored Aug 26, 2024
1 parent 6bd53ed commit 367f42e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 367f42e

Please sign in to comment.