Merge pull request #1925 from amerkestijn/main

Added ActivePieces as a service
This commit is contained in:
Andras Bacsai 2024-04-16 11:47:14 +02:00 committed by GitHub
commit a7a4baa06e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 56 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

View File

@ -0,0 +1,56 @@
# documentation: https://www.activepieces.com/docs/getting-started/introduction
# slogan: Open source no-code business automation
# tags: workflow, automation, no code, open source
# logo: svgs/activepieces.png
services:
activepieces:
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_ENCRYPTIONKEY
- AP_ENGINE_EXECUTABLE_PATH=dist/packages/engine/main.js
- AP_ENVIRONMENT=prod
- AP_EXECUTION_MODE=UNSANDBOXED
- AP_FRONTEND_URL=$SERVICE_FQDN_ACTIVEPIECES
- AP_JWT_SECRET=$SERVICE_PASSWORD_64_JWT
- AP_POSTGRES_DATABASE=activepieces
- AP_POSTGRES_HOST=postgres
- AP_POSTGRES_PASSWORD=$SERVICE_PASSWORD_64_POSTGRES
- AP_POSTGRES_PORT=5432
- AP_POSTGRES_USERNAME=$SERVICE_USER_POSTGRES
- AP_REDIS_HOST=redis
- AP_REDIS_PORT=6379
- AP_SANDBOX_RUN_TIME_SECONDS=600
- AP_TELEMETRY_ENABLED=true
- 'AP_TEMPLATES_SOURCE_URL=https://cloud.activepieces.com/api/v1/flow-templates'
- AP_TRIGGER_DEFAULT_POLL_INTERVAL=5
- AP_WEBHOOK_TIMEOUT_SECONDS=30
depends_on:
postgres:
condition: service_healthy
redis:
condition: service_started
postgres:
image: 'postgres:latest'
container_name: postgres
restart: unless-stopped
environment:
- POSTGRES_DB=activepieces
- POSTGRES_PASSWORD=$SERVICE_PASSWORD_64_POSTGRES
- POSTGRES_USER=$SERVICE_USER_POSTGRES
volumes:
- 'postgres_data:/var/lib/postgresql/data'
healthcheck:
test: ["CMD-SHELL", "pg_isready -U $${POSTGRES_USER} -d $${POSTGRES_DB}"]
interval: 5s
timeout: 20s
retries: 10
redis:
image: 'redis:latest'
container_name: redis
restart: unless-stopped
volumes:
- 'redis_data:/data'