fix(core): Fix DB migrations for MySQL (#13261)

This commit is contained in:
Eugene
2025-02-18 15:16:46 +03:00
committed by GitHub
parent adaee814ca
commit d0968a10d5
8 changed files with 207 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
services:
mariadb:
image: mariadb:10.9
image: mariadb:10.5
environment:
- MARIADB_DATABASE=n8n
- MARIADB_ROOT_PASSWORD=password
@@ -10,6 +10,26 @@ services:
tmpfs:
- /var/lib/mysql
mysql-8.0.13:
image: mysql:8.0.13
environment:
- MYSQL_DATABASE=n8n
- MYSQL_ROOT_PASSWORD=password
ports:
- 3306:3306
tmpfs:
- /var/lib/mysql
mysql-8.4:
image: mysql:8.4
environment:
- MYSQL_DATABASE=n8n
- MYSQL_ROOT_PASSWORD=password
ports:
- 3306:3306
tmpfs:
- /var/lib/mysql
postgres:
image: postgres:16
restart: always