Activepieces provides two Docker-based options: a single-container setup for testing and Docker Compose for production.
For Docker installation, see Docker.
Run the all-in-one container for local testing or personal use. This option uses SQLite and in-memory queues and is not intended for production.
docker run -d \
--name activepieces \
-p 8080:80 \
-e AP_REDIS_TYPE=MEMORY \
-e AP_DB_TYPE=SQLITE3 \
-e AP_FRONTEND_URL=http://localhost:8080 \
-v activepieces-data:/root/.activepieces \
activepieces/activepieces:latest
The recommended production approach uses Docker Compose from the official repository.
git clone https://github.com/activepieces/activepieces.git
cd activepieces
./tools/deploy.sh
docker compose up -d
💼 Professional Services: Need expert help with your Activepieces Docker deployment? We offer consulting, training, and support. Contact our team →