Skip to main content
Use this guide for a manual Docker Compose setup. It downloads the production Compose file and starts the baseline Formbricks stack: Formbricks Web, PostgreSQL, Redis/Valkey, Formbricks Hub, and Cube. Optional services such as Qwen/vLLM, AI taxonomy, and RustFS are documented after the baseline stack is running.

Requirements

Make sure the following tools are installed:
  • Docker Engine with Docker Compose V2 (docker compose)
  • curl
  • openssl
  • A POSIX-compatible shell such as sh, bash, or zsh
Docker and Docker Compose are usually included in tools like Docker Desktop and Rancher Desktop.
docker compose without the hyphen is now the primary method of using docker-compose, according to the Docker documentation.

Choose Your Setup Path

  • Use this manual Docker Compose guide for local installs, custom servers, or custom reverse-proxy setups.
  • Use the one-click setup script for production Ubuntu servers where you want Traefik, HTTPS certificates, and optional RustFS automation.
  • Use the migration guide before updating an existing Formbricks 4.x install or an older v5 compose file.
Starting with Formbricks v5, the production Docker Compose stack includes Formbricks Hub and Cube as part of the baseline. Keep HUB_API_URL at its internal default unless Hub runs elsewhere.

Start

  1. Create a New Directory for Formbricks Open a terminal and run the following commands to create and enter a new directory for Formbricks:
  2. Download the Docker Files Get the Docker Compose file plus the Cube configuration shipped with the baseline stack:
  3. Create the Environment File Store your configuration in .env. Docker Compose reads this file for variable interpolation, and the Formbricks container also loads it at startup. For a local install, use http://localhost:3000. For a server install, replace both URL values with your public HTTPS URL before starting the stack.
  4. Validate the Docker Compose Configuration Validate the Compose file after .env contains the required values:
    If validation fails, check that .env contains the required values and that docker-compose.yml has valid syntax.
  5. Start the Docker Setup Now, you’re ready to run Formbricks with Docker. Use the command below to start Formbricks together with PostgreSQL, Redis, Formbricks Hub, and Cube.
    The -d flag runs the containers in the background, so they keep running even after you close the terminal.
  6. Verify the Stack Confirm the baseline services started and the Formbricks health endpoint responds:
    formbricks-migrate and hub-migrate should complete successfully. postgres, redis, cube, hub, and formbricks should be running or healthy.
  7. Open Formbricks in Your Browser Once the setup is running, open http://localhost:3000 in your browser to access Formbricks. The first time you visit, you’ll see a setup wizard. Follow the steps to create your first user and start using Formbricks.
The bundled Docker stack keeps Formbricks Hub and Cube internal to the compose network. The app reaches them through http://hub:8080 and http://cube:4000. When AI taxonomy beta is enabled, Hub reaches taxonomy internally through http://taxonomy:8000.

Optional Services

Start and verify the baseline stack before enabling optional services.
If .env already contains a COMPOSE_PROFILES line, update that line instead of adding a second one.

Enable Bundled Qwen/vLLM For AI

The Docker stack can optionally run Qwen through vLLM as an OpenAI-compatible /v1 endpoint. Baseline installs do not start vLLM and can still use Google Vertex, Azure, AWS Bedrock, or another OpenAI-compatible endpoint. The bundled Qwen/vLLM service requires a GPU-capable Docker host with the NVIDIA Container Toolkit installed. Model files are stored in the qwen-model-cache Docker volume. Startup can take several minutes while vLLM downloads and loads the model. To use the bundled Qwen runtime, add these values to .env:
Then start the stack with the profile and check vLLM:
The vLLM endpoint is available inside the Compose network at http://vllm:8000/v1 and is bound to 127.0.0.1:8000 by default for local checks. If you run your own Qwen/vLLM service, do not enable the qwen profile. Set AI_PROVIDER, AI_MODEL, and AI_OPENAI_COMPATIBLE_BASE_URL to your external endpoint instead.

Enable AI Taxonomy Beta

The standalone AI taxonomy service is included as an opt-in Docker Compose profile. Baseline installs do not start taxonomy and do not require taxonomy or LLM secrets. To enable taxonomy with the bundled Qwen runtime, add these values to .env:
Replace :v0.1.0 with the current released ghcr.io/formbricks/taxonomy image tag for your Formbricks version. Production installs should pin a release tag instead of relying on :latest. If you run your own OpenAI-compatible endpoint, use COMPOSE_PROFILES=taxonomy instead and point TAXONOMY_LLM_BASE_URL at that /v1 endpoint. The selected model must reliably return strict JSON because taxonomy generation validates an exact 5-level tree. To use Amazon Bedrock instead of an OpenAI-compatible endpoint, replace the taxonomy LLM values with:
To use Gemini on Vertex AI instead, replace the taxonomy LLM values with:
Start the stack after updating .env. Compose reads COMPOSE_PROFILES from .env, so the same command works for taxonomy and qwen,taxonomy setups:
If you enabled the bundled Qwen profile, also check vLLM:
Run the authenticated preflight after startup to verify Hub internal auth and LLM reachability:
This command runs inside the taxonomy container, so 127.0.0.1:8000 refers to the taxonomy service itself. The preflight endpoint then checks Hub internal auth and LLM reachability from taxonomy. The taxonomy service remains internal to the compose network by default. For production workloads, TAXONOMY_MAX_RECORDS defaults to 50000; override it only as an advanced safety limit after sizing CPU, memory, and LLM capacity.
The taxonomy service is internal to the Docker network. Formbricks Web still calls Hub with HUB_API_KEY; Hub calls taxonomy with TAXONOMY_SERVICE_TOKEN; taxonomy calls Hub internal APIs with HUB_INTERNAL_API_TOKEN.
The one-click installer does not prompt for AI taxonomy settings. One-click users can enable the beta later by editing ./formbricks/.env, adding the taxonomy variables above, ensuring COMPOSE_PROFILES=taxonomy is set, and restarting with docker compose up -d.
If you use the one-click Traefik setup, FeedbackRecords are available on the Formbricks origin at /api/v3/feedbackRecords and /v1/feedback-records. Custom Docker reverse proxies need equivalent wiring: run gateway auth against the Formbricks app, rewrite /api/v3/feedbackRecords to Hub’s /v1/feedback-records, and inject Authorization: Bearer <HUB_API_KEY> only on the Hub-bound hop.

Update

See our migration guide for version-specific steps to update Formbricks.
For a major migration such as Formbricks 4.x to 5.0, update your compose structure and configuration first. Pulling images alone is not enough if your stack does not yet include Hub (HUB_API_KEY), Cube (cube/ config files plus CUBEJS_API_SECRET), or the new edge rate-limiting setup.
  1. Pull the latest Formbricks image
  2. Stop the Formbricks stack
  3. Re-start the Formbricks stack with the updated image

Optional: Add RustFS for File Storage

RustFS provides S3-compatible object storage for file uploads in Formbricks. It is not required for the baseline Docker setup. Add it only when you want features like image uploads, survey file uploads, or custom logos.
For a broader overview of file storage options and required environment variables, see our File Uploads Configuration guide.
For production deployments with HTTPS, use the one-click setup script which automatically configures RustFS with Traefik, SSL certificates, a dedicated files. subdomain, and least-privilege service credentials. The examples below are best suited for development, testing, or custom local setups.
The bundled RustFS examples on this page are convenience-oriented single-server setups. They work well for development, evaluation, and smaller self-hosted deployments, but they are not the ideal RustFS architecture for high-availability or larger-scale production storage. For stricter production requirements, use external object storage or run a dedicated RustFS deployment separately.

Quick Start: Repository Development Stack

If you cloned the Formbricks repository, the fastest way to test file uploads locally is to use the included docker-compose.dev.yml, which already starts RustFS and auto-creates the formbricks bucket.
This development compose file is not downloaded by the manual production quickstart above. If you only downloaded docker-compose.yml, use the manual RustFS setup below or the one-click production setup.
  1. Start the local stack From the repository root:
    This starts PostgreSQL, Valkey (Redis), Mailhog, RustFS, a permissions helper, a one-time bucket bootstrap job, Formbricks Hub, and a local Cube instance for analytics testing.
  2. Access the RustFS console Open http://localhost:9001 in your browser and sign in with:
    • Username: devrustfs
    • Password: devrustfs123
  3. Configure Formbricks Update your .env file or environment variables:
  4. Verify uploads After uploading a file in Formbricks, open http://localhost:9001 and navigate to Buckets → formbricks to confirm the object was stored successfully.
The development compose file also runs a rustfs-init job so you do not need to create the bucket manually.

Manual RustFS Setup (Custom Configuration)

Recommended: Prefer docker-compose.dev.yml for local development unless you need to fold RustFS into an existing custom Compose stack.
If you want to add RustFS to your own docker-compose.yml, use a pinned RustFS image plus two helper services:
Declare the corresponding volume:
Store the generated RustFS credentials in a local .env file next to your docker-compose.yml instead of hardcoding them in Compose:
Then configure Formbricks to use the RustFS service credentials:
Start the stack:
The bucket and service account are created automatically by the rustfs-init job defined above, so no manual RustFS console step is required.
Restrict the .env file to 0600 and do not commit it to source control. For production, prefer the one-click setup script, which creates a separate least-privilege service account automatically.

Tips & Common Gotchas

  • Permission denied on /data: Ensure the mounted directory or volume is owned by UID 10001. The rustfs-perms helper handles this for Compose-managed volumes.
  • Storage medium matters: Prefer local SSD or NVMe storage for rustfs-data, use XFS on dedicated host-managed disks where possible, and avoid NFS or other network filesystems for RustFS data.
  • Connection refused: Ensure the rustfs container is running and port 9000 is reachable from the Formbricks container.
  • Bucket not found: Confirm that rustfs-init completed successfully or create the bucket manually with mc.
  • Auth failed: Confirm that S3_ACCESS_KEY and S3_SECRET_KEY match the RustFS credentials configured on the server.
  • Backups: Back up the rustfs-data volume regularly, especially for single-server deployments.
  • Console exposure: Do not expose the RustFS console port publicly in production. Keep it on a private network or behind admin-only controls.
  • Health check: From the Formbricks container:

Production Setup with Traefik

For production deployments, use the one-click setup script, which automatically configures:
  • RustFS behind Traefik on a dedicated files.yourdomain.com subdomain
  • Automatic SSL certificate generation via Let’s Encrypt
  • CORS configuration scoped to your Formbricks domain
  • Rate limiting middleware
  • Separate RustFS admin and Formbricks service credentials
  • A rustfs-init job that creates the bucket and access policy
The production setup from formbricks.sh adds the reverse proxy wiring and bootstrap automation needed for long-lived deployments.
Even in the one-click flow, bundled RustFS remains a convenience-oriented single-server deployment. For higher availability, stricter operational requirements, or larger storage footprints, prefer external object storage or a dedicated RustFS deployment managed separately from Formbricks.

Debug

If startup fails, first check the resolved configuration and container state:
Then inspect the services that commonly explain startup issues:
Common checks:
  • Missing or empty secrets: Confirm .env contains NEXTAUTH_SECRET, ENCRYPTION_KEY, CRON_SECRET, HUB_API_KEY, and CUBEJS_API_SECRET.
  • Migration failures: Check formbricks-migrate, hub-migrate, and postgres logs. Do not remove Docker volumes on an existing install unless you intend to delete its data.
  • Cube is unhealthy: Confirm cube/cube.js, cube/schema/FeedbackRecords.js, and CUBEJS_API_SECRET exist, then inspect docker compose logs cube.
  • Hub auth errors: Confirm the same HUB_API_KEY from .env is used by Formbricks Web and the Hub service.
  • Port conflicts: Confirm ports 3000, 6379, and any optional service ports you enabled are not already in use on the host.
  • Optional Qwen/vLLM issues: Check GPU availability, NVIDIA Container Toolkit installation, and docker compose --profile qwen logs --tail=200 vllm.
To edit any of the available environment variables, check out our Configuration section.
If you have any questions or require help, reach out on GitHub Discussions.