n8n/.github/docker-compose.yml
कारतोफ्फेलस्क्रिप्ट™ 99157cf581
feat: setup nightly tests for postgres and mysql schemas (#4441)
* feat: unify Jest config

* feat: simplify DB setup for tests

* feat: setup nightly tests for postgres and mysql schemas
2022-10-25 22:06:03 +02:00

20 lines
341 B
YAML

version: '3.9'
services:
mysql:
image: mysql:5.7-debian
environment:
- MYSQL_DATABASE=n8n
- MYSQL_ROOT_PASSWORD=password
ports:
- 3306:3306
postgres:
image: postgres:11
environment:
- POSTGRES_DB=n8n
- POSTGRES_USER=root
- POSTGRES_PASSWORD=password
ports:
- 5432:5432