docker-compose.mdx
June 26, 2026 ยท View on GitHub
To get up and running quickly with Activepieces, we will use the Activepieces Docker image. Follow these steps:
Prerequisites
You need to have Git and Docker installed on your machine in order to set up Activepieces via Docker Compose.
Installing
1. Clone Activepieces repository.
Use the command line to clone Activepieces repository:
git clone https://github.com/activepieces/activepieces.git
2. Go to the repository folder.
cd activepieces
3.Generate Environment variable
Run the following command from the command prompt / terminal
sh tools/deploy.sh
4. Run Activepieces.
docker compose -p activepieces up
4. Configure Webhook URL (Important for Triggers, Optional If you have public IP)
Note: By default, Activepieces will try to use your public IP for webhooks. If you are self-hosting on a personal machine, you must configure the frontend URL so that the webhook is accessible from the internet.
Optional: The easiest way to expose your webhook URL on localhost is by using a service like ngrok. However, it is not suitable for production use.
- Install ngrok
- Run the following command:
ngrok http 8080
- Replace
AP_FRONTEND_URLenvironment variable in.envwith the ngrok url.

Review the configurations guide to make any necessary adjustments.
Upgrading
To upgrade to new versions, which are installed using docker compose, perform the following steps. First, open a terminal in the activepieces repository directory and run the following commands.
Automatic Pull
1. Run the update script
sh tools/update.sh
Manually Pull
1. Pull the new docker compose file
git pull
2. Pull the new images
docker compose pull
3. Review changelog for breaking changes
4. Run the updated docker images
docker compose up -d --remove-orphans
Congratulations! You have now successfully updated the version.
Deleting
The following command is capable of deleting all Docker containers and associated data, and therefore should be used with caution:
sh tools/reset.sh