Requirements
- Docker with Compose v2
Setup
Quickstart (Recommended)
Note: If you are deploying PipesHub on a cloud server, make sure you are using an HTTPS endpoint. PipesHub enforces stricter security checks, and browsers will block certain requests when the application is served over HTTP. You can use a reverse proxy like Cloudflare, Nginx, or Traefik to terminate SSL/TLS and provide a valid HTTPS certificate. If you see a white screen after deploying PipesHub while accessing it over HTTP, this is likely the cause. The frontend will refuse to load due to stricter security checks.1
⚡ Run the one-command installer
./pipeshub (falling back to main if the unauthenticated GitHub API lookup fails — 60 requests/hour per IP) and launches the interactive installer. Open http://localhost:3000 once it finishes.get.pipeshub.com/install is a 302 to the root install.sh on GitHub (https://raw.githubusercontent.com/pipeshub-ai/pipeshub-ai/main/install.sh). The wrapper then fetches docker-compose.yml and the in-tree installer for that resolved ref.Prefer to read before running?
- Check Docker, RAM, and disk prerequisites
- Ask whether you want a slim or full deployment
- Let you optionally customize the graph DB, message broker, and KV store
- Generate randomized secrets and write a
.envfile - Pull images and start the stack
- Wait for PipesHub to become healthy, verify it is reachable, and print the URL
https://pipeshub.yourdomain.com). This is written to .env as FRONTEND_PUBLIC_URL and is required for OAuth callbacks, email invites, and to avoid the HTTP white-screen issue described above. Leave it blank only for local, localhost-only access. You can update it later by editing .env and running ./install.sh --reconfigure from the directory the installer prints, or by setting PIPESHUB_PUBLIC_URL for a non-interactive install.Installer options
Standalone
curl | bash uses prebuilt Hub images only. --build needs a git clone — see From a cloned repository.Standalone-only environment overrides (set them on the bash side of the pipe):Advanced options such as CI environment variables, slim vs. full deployment types, a second instance on the same host, and manual Compose profile usage are covered in Advanced Deployment Options.
2
Onboarding Setup
- After the installer reports PipesHub is healthy, open the UI via localhost:3000 (if running on the same system) or the Frontend Public URL / port you configured.
- If you’re an individual, select the “Individual” account type. For businesses, choose “Enterprise” and complete your account setup by filling in the basic details.
- You will then be redirected to the onboarding page. Please fill in all the required information carefully. You can always update these details later under the “Profile” tab in the Settings page.
3
🛑 To stop the services
curl | bash does not cd your shell. The success banner prints the directory for later commands — ./pipeshub by default, or PIPESHUB_DIR if you set it. --stop, --upgrade, --reconfigure, and --uninstall all run from there.From a cloned repository (developers)
Requires Git. To build from source, contribute, or pin the installer to your checkout:./install.sh --build). The one-command installer above always uses prebuilt images. From a clone, run --stop, --upgrade, --reconfigure, and --uninstall from this same repository root.