mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 17:50:52 +03:00
26 lines
440 B
YAML
26 lines
440 B
YAML
version: '3.9'
|
|
|
|
services:
|
|
mysql:
|
|
image: mysql:5.7
|
|
environment:
|
|
- MYSQL_DATABASE=n8n
|
|
- MYSQL_ROOT_PASSWORD=password
|
|
ports:
|
|
- 3306:3306
|
|
ulimits:
|
|
nproc: 65535
|
|
nofile:
|
|
soft: 26677
|
|
hard: 46677
|
|
|
|
postgres:
|
|
image: postgres:16
|
|
restart: always
|
|
environment:
|
|
- POSTGRES_DB=n8n
|
|
- POSTGRES_USER=root
|
|
- POSTGRES_PASSWORD=password
|
|
ports:
|
|
- 5432:5432
|