Nomploy Nomad Packs

← All packs

baserow v0.1.0

Low-code

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.

nomad-pack run baserow --registry nomploy
…or one line (add registry + run)
curl -fsSL https://packs.nomploy.com/install.sh | sh -s -- baserow

Needs nomad-pack on PATH. The script only adds the nomploy registry and runs this pack.

1 task http 3001 1 volume image baserow/baserow:latest tracks :latest image bumped today
Variables 9
values.hcl

Save as values.hcl, edit, then run:

nomad-pack run baserow -f values.hcl --registry nomploy
# 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
  }
NameTypeDefaultDescription
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.
Back up this pack

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.

Readme

baserow

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.

Deploy

nomad-pack registry add nomploy https://github.com/Nomploy/nomad-packs
nomad-pack run baserow --registry=nomploy

Configure

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_url matters: if BASEROW_PUBLIC_URL doesn'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 with constraints.