shouldiselfhost?they tell you if you can — we tell you if you should
THE DECISION LAYER FOR SELF-HOSTING100 APPS UNDER COVERAGEPROTOCOL v1NO VENDOR HAS EVER PAID FOR A RATING
§
COMMS-SCHEDULING
Doodle logo

Should I self-host Doodle?

$10.95/mo · Pro per seat · alternative: Rallly
RATING
YES
OUTLOOK
NOT ASSIGNED
RATIONALE

Rallly does the one Doodle job — find a time that works for everyone — with a clean UI, no ads around your poll, and no $10.95/mo for what is fundamentally a form with dates on it.

WHAT YOU LOSE
01

Doodle's booking-page features beyond group polls (Cal.com covers those, separately verified)

WHAT YOU'RE PAYING FOR

group scheduling polls · availability collection · calendar integration

Self-Hosting Facts
1 app per panel · Doodle
Assumes 1 seat on 1 always-on box you already run
Amount per month% of sub *
Subscription$10.95
VPS share0.303%
Storage + backup0.000%
Your hours · 10 min @ $203.3330%
Self-hosted all-in3.6333%
Effective markup3.0×
Setup · 12 min measured$4.00 once
Break-even0.5 months
VERDICT
YES
OUTLOOK
NOT ASSIGNED

* Percent of the subscription price. Your time is priced at the slider's rate — $0/h ("my homelab time is free and I love it") is a legitimate position. Every number is derived from the record, never hand-written. Price source, checked 2026-08-07.

Runs comfortably on a Raspberry Pi.

01
ALTERNATIVES
Ranked alternatives
01Rallly logo
RalllySend a group a link, let them tick the times that work, and pick the winner, with no cap on how many people answer.
lukevella/rallly · ★ 5,209 · 0d
02Cal.com logo
Cal.comSend someone a link, they pick a slot, the invite lands in both calendars, and none of it runs on a domain you are renting.
calcom/cal.diy · ★ 47,409 · 2d
Rallly running from the boot-verified compose file
Rallly, running from the compose file on this page — screenshot from our verified instance, not marketing material.
02
EVIDENCE
PROTOCOL
v1
VERIFIED BY
zernonia
REVIEWED
10 AUG 2026
SETUP MEASURED
12 MIN
AI ASSISTANT
CLAUDE-CODE · STATED
WHAT BROKE
01

Boot to healthy measured at 64s on the 2GB reference env

THE TESTED COMPOSE FILE — CI-BOOTED WEEKLY
# Rallly — meeting polls; node app + postgres. Sidecar probe (slim image, no curl).
services:
  rallly:
    image: lukevella/rallly:latest
    container_name: rallly
    restart: unless-stopped
    depends_on:
      rallly-db:
        condition: service_healthy
    environment:
      DATABASE_URL: postgres://rallly:rallly@rallly-db:5432/rallly
      SECRET_PASSWORD: change-me-please-0123456789abcdef
      NEXT_PUBLIC_BASE_URL: http://localhost:3004
    ports:
      - "3004:3000"

  probe:
    image: busybox:stable
    network_mode: "service:rallly"
    depends_on:
      - rallly
    command: sh -c 'while true; do sleep 30; done'
    healthcheck:
      test: ["CMD-SHELL", "nc -z localhost 3000 || exit 1"]
      interval: 5s
      timeout: 5s
      retries: 60
      start_period: 25s
  rallly-db:
    image: postgres:16-alpine
    restart: unless-stopped
    environment:
      POSTGRES_USER: rallly
      POSTGRES_PASSWORD: rallly
      POSTGRES_DB: rallly
    volumes:
      - rallly-db:/var/lib/postgresql/data
    healthcheck:
      test: ["CMD-SHELL", "pg_isready -U rallly"]
      interval: 5s
      timeout: 5s
      retries: 12
volumes:
  rallly-db:

Want a guided install instead? caniselfhostit.com/doodle has AI-agent prompts that assume a bare machine — that's their half of the stool, and it's good.

FULL TIMED LOG
# Doodle — verdict log

- **Date:** 2026-08-10
- **Verdict:** YES — worth it
- **Protocol:** v1 (2GB reference env, Docker preinstalled, AI assistant: claude-code)

## Setup evidence

- Compose: `compose/doodle-rallly.yml`
- Boot to healthy: **64s** measured this session
- Setup time recorded: 12 min (boot + configuration to first working workflow)

## What broke / notes

- Boot to healthy measured at 64s on the 2GB reference env

## The call

Rallly does the one Doodle job — find a time that works for everyone — with a clean UI, no ads around your poll, and no $10.95/mo for what is fundamentally a form with dates on it.
03
HISTORY
10 AUG 2026UNRATED → YESInitial verdict: Rallly does the one Doodle job — find a time that works for everyone — with a clean UI, no ads around your pol.