From dc335cd327635c228f35ae1bccdf678357b1e9d5 Mon Sep 17 00:00:00 2001 From: Eric Landheer Date: Tue, 3 Feb 2026 22:32:03 +0100 Subject: [PATCH] fix(service): activepieces postgres 18 volume mount (#8098) --- templates/compose/activepieces.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates/compose/activepieces.yaml b/templates/compose/activepieces.yaml index bd2983fb7..70e6a60b6 100644 --- a/templates/compose/activepieces.yaml +++ b/templates/compose/activepieces.yaml @@ -28,6 +28,7 @@ services: - AP_TELEMETRY_ENABLED=${AP_TELEMETRY_ENABLED:-false} - AP_TEMPLATES_SOURCE_URL=${AP_TEMPLATES_SOURCE_URL:-https://cloud.activepieces.com/api/v1/flow-templates} - AP_TRIGGER_DEFAULT_POLL_INTERVAL=${AP_TRIGGER_DEFAULT_POLL_INTERVAL:-5} + - AP_SIGN_UP_ENABLED=${AP_SIGN_UP_ENABLED:-true} - AP_WEBHOOK_TIMEOUT_SECONDS=${AP_WEBHOOK_TIMEOUT_SECONDS:-30} depends_on: postgres: @@ -47,7 +48,7 @@ services: - POSTGRES_USER=${SERVICE_USER_POSTGRES} - POSTGRES_PORT=${POSTGRES_PORT:-5432} volumes: - - "pg-data:/var/lib/postgresql/data" + - 'pg-data:/var/lib/postgresql' healthcheck: test: ["CMD-SHELL", "pg_isready -U $${POSTGRES_USER} -d $${POSTGRES_DB}"] interval: 5s