Postgres for Search and Analytics — deployed on Render
This repo deploys ParadeDB on Render with one click.
- Uses the official ParadeDB Docker image.
- Render Disks provide fast, persistent SSD storage for your database.
- ParadeDB runs in your private network and isn't exposed to the public Internet.
Use the button below to deploy ParadeDB on Render.
- Fork this repo.
- Create a new Private Service on Render.
- Connect your forked repo and use the
Dockerfileruntime. - Add a Disk mounted at
/var/lib/postgresqlwith at least 10 GB. - Set the following environment variables:
POSTGRES_USER— database user (e.g.postgres)POSTGRES_PASSWORD— a strong passwordPOSTGRES_DB— database name (e.g.paradedb)
Once deployed, connect from any other service in your Render private network:
psql -h paradedb -U postgres -d paradedb
Or add an SSH key to Render, connect to the SSH endpoint, then run:
psql -U postgres paradedb
ParadeDB is an Elasticsearch alternative built on Postgres. It delivers elastic-quality full-text search, hybrid search, and faceted search — all in pure SQL, with no separate search infrastructure to manage.
- BM25 full-text search with 12+ tokenizers across 20+ languages
- Hybrid search combining BM25 and vector similarity
- Faceted search and boolean queries for filtering and complex search logic
- Zero ETL — installs as a Postgres extension or replicates from managed databases (RDS, Supabase, Neon, etc.)
500K+ Docker pulls •
100K+ extension installs •
8K+ GitHub stars
Learn more at paradedb.com.