Should I self-host Doodle?
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.
Doodle's booking-page features beyond group polls (Cal.com covers those, separately verified)
group scheduling polls · availability collection · calendar integration
* 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.



Boot to healthy measured at 64s on the 2GB reference env
# 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.