Skip to main content
Tutorials10 min read

How to Set Up Activepieces on Your VPS with Docker Compose

Activepieces is a rising open-source automation platform. Learn how to deploy it on your VPS with Docker Compose, configure SSL, and start automating.

By AutomationVPS

What is Activepieces?

Activepieces is an open-source automation platform that's quickly becoming a popular alternative to n8n and Zapier. It features a beautiful, intuitive interface and a rapidly growing library of integrations. Best of all, you can self-host it for free.

Requirements

  • A VPS with at least 2GB RAM (Hostinger KVM 1 at $4.99/mo is perfect)
  • Docker and Docker Compose installed
  • A domain name (optional but recommended for SSL)

Step 1: Install Docker

curl -fsSL https://get.docker.com | sh
apt install docker-compose -y

Step 2: Deploy Activepieces

mkdir -p /opt/activepieces && cd /opt/activepieces
curl -o docker-compose.yml https://raw.githubusercontent.com/activepieces/activepieces/main/docker-compose.yml
docker-compose up -d

Step 3: Access Your Instance

Activepieces will be available at http://your-server-ip:8080. Create your admin account and start building automations!

Why Choose Activepieces?

Activepieces shines with its modern UI and ease of use. While n8n targets developers, Activepieces is designed for a broader audience. It supports code steps when you need them, but the visual builder is powerful enough for most workflows.

Ready to start automating? Get a VPS today.

Get started with Hostinger VPS hosting today. Special pricing available.

Get Hostinger VPS

* Affiliate link — we may earn a commission at no extra cost to you

#activepieces#docker#self-hosting#tutorial