Configure n8n for supabase

This commit is contained in:
Trevor SANDY
2025-12-30 05:39:27 +01:00
parent 4fc83cede2
commit abf5707f68
2 changed files with 10 additions and 8 deletions
+4 -2
View File
@@ -201,8 +201,10 @@ GOOGLE_PROJECT_NUMBER=GOOGLE_PROJECT_NUMBER
# PostgreSQL - You can change these to any PostgreSQL database that has logical replication enabled.
############
POSTGRES_DB=n8n
POSTGRES_USER=root
POSTGRES_HOST=db
POSTGRES_DB=postgres
POSTGRES_PORT=5432
POSTGRES_USER=postgres
############
# Supavisor -- Database pooler and others that can be left as default values
+6 -6
View File
@@ -6,7 +6,7 @@ volumes:
opencode_data:
open_webui_data:
open_webui_pipelines_data:
postgres_data:
langfuse_postgres_data:
langfuse_clickhouse_data:
langfuse_clickhouse_logs:
langfuse_minio_data:
@@ -286,18 +286,18 @@ services:
container_name: postgres
restart: unless-stopped
healthcheck:
test: ['CMD-SHELL', 'pg_isready -h localhost -U ${POSTGRES_USER} -d ${POSTGRES_DB}']
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 3s
timeout: 3s
retries: 10
expose:
- 5432/tcp
environment:
- POSTGRES_USER
- POSTGRES_PASSWORD
- POSTGRES_DB
POSTGRES_DB: postgres
POSTGRES_USER: postgres
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
volumes:
- postgres_data:/var/lib/postgresql/data
- langfuse_postgres_data:/var/lib/postgresql/data
qdrant:
profiles: ["n8n", "n8n-all", "ai-all"]