2022-10-25 13:06:03 -07:00
|
|
|
version: '3.9'
|
|
|
|
|
|
|
|
services:
|
|
|
|
mysql:
|
2023-09-28 07:53:05 -07:00
|
|
|
image: mysql:5.7
|
2022-10-25 13:06:03 -07:00
|
|
|
environment:
|
|
|
|
- MYSQL_DATABASE=n8n
|
|
|
|
- MYSQL_ROOT_PASSWORD=password
|
|
|
|
ports:
|
|
|
|
- 3306:3306
|
2023-09-28 07:53:05 -07:00
|
|
|
ulimits:
|
|
|
|
nproc: 65535
|
|
|
|
nofile:
|
|
|
|
soft: 26677
|
|
|
|
hard: 46677
|
2022-10-25 13:06:03 -07:00
|
|
|
|
|
|
|
postgres:
|
2024-04-18 07:35:19 -07:00
|
|
|
image: postgres:16
|
2023-09-28 07:53:05 -07:00
|
|
|
restart: always
|
2022-10-25 13:06:03 -07:00
|
|
|
environment:
|
|
|
|
- POSTGRES_DB=n8n
|
2024-04-29 05:19:19 -07:00
|
|
|
- POSTGRES_USER=postgres
|
2022-10-25 13:06:03 -07:00
|
|
|
- POSTGRES_PASSWORD=password
|
|
|
|
ports:
|
|
|
|
- 5432:5432
|