Activepieces is an open-source, AI-first automation platform that enables every team to build powerful workflows. It serves as a robust alternative to tools like Zapier, designed to handle intricate, multi-step logic with ease. You can create intelligent AI agents that act like your best employees, handling tasks from lead scoring to generating daily reports.
The platform provides a comprehensive suite of tools to drive automation adoption throughout your organization:
services:
activepieces:
image: ghcr.io/activepieces/activepieces:latest
container_name: activepieces
ports:
- "8080:80"
environment:
- AP_ENVIRONMENT=prod
- AP_FRONTEND_URL=http://localhost:8080
- AP_EXECUTION_MODE=UNSANDBOXED
- AP_POSTGRES_DATABASE=activepieces
- AP_POSTGRES_HOST=postgres
- AP_POSTGRES_PORT=5432
- AP_POSTGRES_USERNAME=postgres
- AP_POSTGRES_PASSWORD=${AP_POSTGRES_PASSWORD}
- AP_REDIS_HOST=redis
- AP_REDIS_PORT=6379
- AP_JWT_SECRET=${AP_JWT_SECRET}
depends_on:
- postgres
- redis
restart: unless-stopped
postgres:
image: postgres:14.4
container_name: activepieces_postgres
environment:
- POSTGRES_DB=activepieces
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=${AP_POSTGRES_PASSWORD}
volumes:
- ./postgres-data:/var/lib/postgresql/data
restart: unless-stopped
redis:
image: redis:7.0.8
container_name: activepieces_redis
volumes:
- ./redis-data:/data
restart: unless-stoppedAP_POSTGRES_PASSWORD=your_secure_postgres_password
AP_JWT_SECRET=your_super_secret_jwt_key_change_meAuto-fetched about 24 hours ago
Auto-fetched about 24 hours ago