Baserow — a no-code database and spreadsheet platform (an open-source Airtable alternative). This all-in-one image bundles PostgreSQL, Redis and Caddy. Deployed as a single host-networked Nomad service.
Needs nomad-pack on PATH. The script only adds the nomploy registry and runs this pack.
Source ↗ Project ↗ ★ 6k ⚑ Report an issue
Save as values.hcl, edit, then run:
# The name of the Nomad job.
job_name = "baserow"
# The Nomad namespace to deploy into.
namespace = "default"
# The datacenters to deploy to.
datacenters = ["*"]
# The Baserow container image. Pin a tag in production.
image = "baserow/baserow:latest"
# Host port for the Baserow web UI.
port = 3001
# Named volume mounted at /baserow/data — the embedded PostgreSQL, Redis state and uploaded files.
data_volume = "baserow_data"
# Public URL Baserow is reachable at (BASEROW_PUBLIC_URL). MUST match the address users open, including the port, or the app breaks. Empty = http://localhost:<port>. Set this to your real host/domain.
base_url = ""
# Placement constraints. On a nomploy cluster: attribute = "$${meta.nomploy_control_plane}", operator = "=", value = "true".
constraints = []
# The task resources.
resources = {
cpu = 1500
memory = 2048
}
| Name | Type | Default | Description |
|---|---|---|---|
| job_name | string | "baserow" | The name of the Nomad job. |
| namespace | string | "default" | The Nomad namespace to deploy into. |
| datacenters | list | ["*"] | The datacenters to deploy to. |
| image | string | "baserow/baserow:latest" | The Baserow container image. Pin a tag in production. |
| port | number | 3001 | Host port for the Baserow web UI. |
| data_volume | string | "baserow_data" | Named volume mounted at /baserow/data — the embedded PostgreSQL, Redis state and uploaded files. |
| base_url | string | "" | Public URL Baserow is reachable at (BASEROW_PUBLIC_URL). MUST match the address users open, including the port, or the app breaks. Empty = http://localhost:<port>. Set this to your real host/domain. |
| constraints | list | [] | Placement constraints. On a nomploy cluster: attribute = "$${meta.nomploy_control_plane}", operator = "=", value = "true". |
| resources | object | {
cpu = 1500
memory = 2048
} | The task resources. |
No variables match.
This pack stores data in one Docker named volume:
baserow_data
restic
# Run on the node hosting this pack. Point restic at your repo first: # export RESTIC_REPOSITORY="s3:https://<account>.r2.cloudflarestorage.com/<bucket>" # export RESTIC_PASSWORD="<repo-password>" # export AWS_ACCESS_KEY_ID=<key> AWS_SECRET_ACCESS_KEY=<secret> restic backup \ /var/lib/docker/volumes/baserow_data/_data
rclone (sync to S3/R2)
rclone sync /var/lib/docker/volumes/baserow_data/_data backup:<bucket>/baserow_data
Paths assume the default Docker volume location (/var/lib/docker/volumes). Restore by stopping the job, restoring files into the same volume, and re-running the pack.
Baserow — a no-code database and spreadsheet platform, an open-source Airtable alternative. Build tables with rich field types, link records, create grid/gallery/kanban/form views, collaborate in real time, and automate with the REST API and webhooks.
This pack uses the all-in-one image, which bundles PostgreSQL, Redis and a Caddy reverse proxy in one container, so it runs as a single host-networked Nomad service with one persistent data volume.
nomad-pack registry add nomploy https://github.com/Nomploy/nomad-packs
nomad-pack run baserow --registry=nomploy
| Variable | Default | Description |
|---|---|---|
port |
3001 |
Web UI port. Baserow's bundled Caddy listens here (BASEROW_CADDY_ADDRESSES). |
base_url |
"" |
Set for real use. Public URL (BASEROW_PUBLIC_URL) — must match what users open, including the port. Empty = http://localhost:<port>. |
image |
baserow/baserow:latest |
Container image. Pin a tag in production. |
data_volume |
baserow_data |
/baserow/data — the embedded PostgreSQL, Redis state and uploaded files. |
resources |
{ cpu = 1500, memory = 2048 } |
Task resources. The all-in-one image runs several services — give it room. |
base_urlmatters: ifBASEROW_PUBLIC_URLdoesn't match the address you actually open (host + port), logins and API calls fail. The first account you create becomes an admin. Because Postgres/Redis live in the data volume, pin the job to the node holding it withconstraints.