HomeBox — a simple, fast home inventory and organization system: track your belongings, locations, labels, warranties, and attachments, with QR labels and CSV import. Deployed as a single host-networked Nomad service on SQLite with a persistent data volume.
Save as values.hcl, edit, then run:
# The name of the Nomad job.
job_name = "homebox"
# The Nomad namespace to deploy into.
namespace = "default"
# The datacenters to deploy to.
datacenters = ["*"]
# The HomeBox container image. Pin a tag in production.
image = "ghcr.io/sysadminsmedia/homebox:latest"
# Host port for the HomeBox web UI (HBOX_WEB_PORT).
port = 7745
# Allow new users to self-register (HBOX_OPTIONS_ALLOW_REGISTRATION).
allow_registration = true
# Named volume for the SQLite database and uploads (/data).
data_volume = "homebox_data"
# Placement constraints. Pin to the node holding the volume. On a nomploy cluster: attribute = "$${meta.nomploy_control_plane}", operator = "=", value = "true".
constraints = []
# The task resources.
resources = {
cpu = 300
memory = 128
}
| Name | Type | Default | Description |
|---|---|---|---|
| job_name | string | "homebox" | The name of the Nomad job. |
| namespace | string | "default" | The Nomad namespace to deploy into. |
| datacenters | list | ["*"] | The datacenters to deploy to. |
| image | string | "ghcr.io/sysadminsmedia/homebox:latest" | The HomeBox container image. Pin a tag in production. |
| port | number | 7745 | Host port for the HomeBox web UI (HBOX_WEB_PORT). |
| allow_registration | bool | true | Allow new users to self-register (HBOX_OPTIONS_ALLOW_REGISTRATION). |
| data_volume | string | "homebox_data" | Named volume for the SQLite database and uploads (/data). |
| constraints | list | [] | Placement constraints. Pin to the node holding the volume. On a nomploy cluster: attribute = "$${meta.nomploy_control_plane}", operator = "=", value = "true". |
| resources | object | {
cpu = 300
memory = 128
} | The task resources. |
No variables match.
HomeBox — a simple, fast home inventory and organization system: track belongings, locations, labels, warranties, and attachments, with QR labels and CSV import.
Single host-networked Nomad service on SQLite with a persistent data volume.
nomad-pack registry add nomploy https://github.com/Nomploy/nomad-packs
nomad-pack run homebox --registry=nomploy
| Variable | Default | Description |
|---|---|---|
port |
7745 |
Web UI port (HBOX_WEB_PORT). |
allow_registration |
true |
Allow user self-registration. |
data_volume |
homebox_data |
/data — SQLite database + uploads. |
image |
ghcr.io/sysadminsmedia/homebox:latest |
Image. Pin a tag in production. |
resources |
{ cpu = 300, memory = 128 } |
Task resources. |
Register the first account on first visit. Consider turning allow_registration off afterwards.
Pin the job to the node holding the volume with constraints.