Added the ActivePieces service

This commit is contained in:
amerkestijn
2024-03-31 18:44:20 +02:00
parent 0388c5d5bc
commit ba85c5159d

View File

@@ -3,15 +3,14 @@
# tags: workflow, automation, no code, open source # tags: workflow, automation, no code, open source
# logo: svgs/activepieces.png # logo: svgs/activepieces.png
version: '3.0'
services: services:
activepieces: activepieces:
image: 'ghcr.io/activepieces/activepieces:0.21.0' image: 'ghcr.io/activepieces/activepieces:latest'
container_name: activepieces container_name: activepieces
restart: unless-stopped restart: unless-stopped
environment: environment:
- AP_API_KEY=$SERVICE_PASSWORD_64_APIKEY - 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_ENGINE_EXECUTABLE_PATH=dist/packages/engine/main.js
- AP_ENVIRONMENT=prod - AP_ENVIRONMENT=prod
- AP_EXECUTION_MODE=UNSANDBOXED - AP_EXECUTION_MODE=UNSANDBOXED
@@ -35,7 +34,7 @@ services:
redis: redis:
condition: service_started condition: service_started
postgres: postgres:
image: 'postgres:14.4' image: 'postgres:latest'
container_name: postgres container_name: postgres
restart: unless-stopped restart: unless-stopped
environment: environment:
@@ -50,8 +49,8 @@ services:
timeout: 20s timeout: 20s
retries: 10 retries: 10
redis: redis:
image: 'redis:7.0.7' image: 'redis:latest'
container_name: redis container_name: redis
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- 'redis_data:/data' - 'redis_data:/data'