mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-28 14:09:43 -08:00
20 lines
393 B
YAML
20 lines
393 B
YAML
services:
|
|
mariadb:
|
|
image: mariadb:10.9
|
|
environment:
|
|
- MARIADB_DATABASE=n8n
|
|
- MARIADB_ROOT_PASSWORD=password
|
|
- MARIADB_MYSQL_LOCALHOST_USER=true
|
|
ports:
|
|
- 3306:3306
|
|
|
|
postgres:
|
|
image: postgres:16
|
|
restart: always
|
|
environment:
|
|
- POSTGRES_DB=n8n
|
|
- POSTGRES_USER=postgres
|
|
- POSTGRES_PASSWORD=password
|
|
ports:
|
|
- 5432:5432
|