docs/deploy/cloud-platforms/render.mdx
Render is a cloud platform that makes it easy to deploy and manage applications. The ParadeDB Render Blueprint provides a one-click deployment that runs ParadeDB Community as a private service with persistent SSD storage.
You can either follow Render's official ParadeDB deployment guide or use the steps below.
The fastest way to get started is to click the button below, which deploys ParadeDB to your Render account.
This will:
paradedb running the official ParadeDB Docker image./var/lib/postgresql.POSTGRES_USER, POSTGRES_PASSWORD, and POSTGRES_DB environment variables automatically.If you prefer to configure the deployment yourself:
docker.io/paradedb/paradedb:latest (or your preferred tag)./var/lib/postgresql.| Variable | Description | Default |
|---|---|---|
POSTGRES_USER | Database user | postgres |
POSTGRES_PASSWORD | Database password | Auto-generated |
POSTGRES_DB | Database name | paradedb |
ParadeDB runs as a private service on Render, which means it is not exposed to the public internet.
Connect from any other service in your Render private network using the service name as the host:
psql -h paradedb -U postgres -d paradedb
Since the service isn't exposed publicly, SSH into the service and run psql from inside the container:
ssh srv-XXXXXXXXXXXXX@ssh.<region>.render.com
psql -U postgres -d paradedb
Replace srv-XXXXXXXXXXXXX with your service ID from the Render dashboard, and make sure you've added an SSH key to your Render account first.