Actual Budget — a fast, privacy-focused, local-first personal finance / envelope-budgeting app with a self-hosted sync server. Deployed as a host-networked Nomad service with a persistent volume for your budget data.
Save as values.hcl, edit, then run:
# The name of the Nomad job.
job_name = "actual"
# The Nomad namespace to deploy into.
namespace = "default"
# The datacenters to deploy to.
datacenters = ["*"]
# The Actual Budget server container image. Pin a tag in production.
image = "actualbudget/actual-server:latest"
# Host port for the Actual web app / sync server (ACTUAL_PORT).
port = 5006
# Docker named volume for /data (the budget files + server DB). A prestart task chowns it to uid 1000 (the node user). Back it up.
data_volume = "actual_data"
# Placement constraints — pin to one node so the local volume stays put. On a nomploy cluster: attribute = "$${meta.nomploy_control_plane}", operator = "=", value = "true".
constraints = []
# The task resources.
resources = {
cpu = 300
memory = 256
}
| Name | Type | Default | Description |
|---|---|---|---|
| job_name | string | "actual" | The name of the Nomad job. |
| namespace | string | "default" | The Nomad namespace to deploy into. |
| datacenters | list | ["*"] | The datacenters to deploy to. |
| image | string | "actualbudget/actual-server:latest" | The Actual Budget server container image. Pin a tag in production. |
| port | number | 5006 | Host port for the Actual web app / sync server (ACTUAL_PORT). |
| data_volume | string | "actual_data" | Docker named volume for /data (the budget files + server DB). A prestart task chowns it to uid 1000 (the node user). Back it up. |
| constraints | list | [] | Placement constraints — pin to one node so the local volume stays put. On a nomploy cluster: attribute = "$${meta.nomploy_control_plane}", operator = "=", value = "true". |
| resources | object | {
cpu = 300
memory = 256
} | The task resources. |
No variables match.
Actual Budget — a fast, privacy-focused, local-first personal finance app (zero-based / envelope budgeting) with a self-hosted sync server. Your data lives on your server and syncs to the web, desktop, and mobile apps. Host-networked Nomad service with a persistent volume.
nomad-pack registry add nomploy github.com/Nomploy/nomad-packs
nomad-pack run actual --registry nomploy
In nomploy: create a Compose service, type Nomad Pack, pack actual, custom registry
github.com/Nomploy/nomad-packs, then Deploy. Open http://<node-ip>:5006, set a server
password on first visit, and create your budget.
| Variable | Default | Notes |
|---|---|---|
image |
actualbudget/actual-server:latest |
Pin a tag in production. |
port |
5006 |
Web app / sync server (ACTUAL_PORT). |
data_volume |
actual_data |
Budgets + sync DB. Back it up. |
constraints |
[] |
Pin to a node so the local volume stays put. |
resources |
cpu 300 / mem 256 |
Lightweight. |
count is fixed to 1 (local volume). A prestart task chowns the volume to
uid 1000. Pin with constraints.data_volume (or use Actual's built-in export).