From ba85c5159d2e75150e37848715ec70101a538531 Mon Sep 17 00:00:00 2001 From: amerkestijn Date: Sun, 31 Mar 2024 18:44:20 +0200 Subject: [PATCH] Added the ActivePieces service --- templates/compose/activepieces.yaml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/templates/compose/activepieces.yaml b/templates/compose/activepieces.yaml index 41b3c5ee8..5cc05b63a 100644 --- a/templates/compose/activepieces.yaml +++ b/templates/compose/activepieces.yaml @@ -3,15 +3,14 @@ # tags: workflow, automation, no code, open source # logo: svgs/activepieces.png -version: '3.0' services: activepieces: - image: 'ghcr.io/activepieces/activepieces:0.21.0' + image: 'ghcr.io/activepieces/activepieces:latest' container_name: activepieces restart: unless-stopped environment: - AP_API_KEY=$SERVICE_PASSWORD_64_APIKEY - - AP_ENCRYPTION_KEY=$SERVICE_PASSWORD_64_ENCRYPTIONKEY + - AP_ENCRYPTION_KEY=$SERVICE_PASSWORD_ENCRYPTIONKEY - AP_ENGINE_EXECUTABLE_PATH=dist/packages/engine/main.js - AP_ENVIRONMENT=prod - AP_EXECUTION_MODE=UNSANDBOXED @@ -35,7 +34,7 @@ services: redis: condition: service_started postgres: - image: 'postgres:14.4' + image: 'postgres:latest' container_name: postgres restart: unless-stopped environment: @@ -50,8 +49,8 @@ services: timeout: 20s retries: 10 redis: - image: 'redis:7.0.7' + image: 'redis:latest' container_name: redis restart: unless-stopped volumes: - - 'redis_data:/data' + - 'redis_data:/data' \ No newline at end of file