AltFreeStack
Productivitydocker-ready1-click-deploy

Rallly: the best Open Source alternative to Doodle in 2026

Rallly lets you create availability polls to find the best meeting date among several people, with no account needed to vote, as an alternative to Doodle.

License AGPL-3.0 5.2k stars liveUpdated hoyWebsite GitHub Repository

Technical profile

License
AGPL-3.0
Category
Productivity
Replaces
Doodle, Calendly
Tech stack
Next.jsPostgreSQL

Preview

Rallly interface preview

Public image provided by Rallly on its own website.

Key features

  • Date polls with no account required
  • Automatic email reminders
  • Calendar integration

Rallly vs. Doodle

Pros

  • Voters don't need to sign up

Things to consider

  • Doesn't replace Calendly's 1-on-1 scheduling, group polls only

Quick Docker installation guide

Copy this docker-compose.yml, adjust the example passwords and run docker compose up -d on your server. See the full step-by-step guide →

docker-compose.yml
version: "3.9"
services:
  rallly:
    image: lukevella/rallly:latest
    restart: unless-stopped
    ports:
      - "3000:3000"
    environment:
      - DATABASE_URL=postgresql://rallly:rallly@rallly-db:5432/rallly
      - SECRET_PASSWORD=change-me-32-char-secret
    depends_on:
      - rallly-db
  rallly-db:
    image: postgres:15-alpine
    restart: unless-stopped
    environment:
      - POSTGRES_USER=rallly
      - POSTGRES_PASSWORD=rallly
      - POSTGRES_DB=rallly
    volumes:
      - rallly_pg_data:/var/lib/postgresql/data
volumes:
  rallly_pg_data: