Flame — a self-hosted startpage / application dashboard you manage entirely from the browser: add apps and bookmarks, group them, pin favourites, and see live weather. Deployed as a single host-networked Nomad service on SQLite with a data volume.
Save as values.hcl, edit, then run:
# The name of the Nomad job.
job_name = "flame"
# The Nomad namespace to deploy into.
namespace = "default"
# The datacenters to deploy to.
datacenters = ["*"]
# The Flame container image. Pin a tag in production.
image = "pawelmalak/flame:latest"
# Host port for the Flame dashboard.
port = 5005
# Password for edit/admin mode (PASSWORD). Viewing is public; changes require this.
password = "changeme-please"
# Named volume for the SQLite database and uploads (/app/data).
data_volume = "flame_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 = 200
memory = 128
}
| Name | Type | Default | Description |
|---|---|---|---|
| job_name | string | "flame" | The name of the Nomad job. |
| namespace | string | "default" | The Nomad namespace to deploy into. |
| datacenters | list | ["*"] | The datacenters to deploy to. |
| image | string | "pawelmalak/flame:latest" | The Flame container image. Pin a tag in production. |
| port | number | 5005 | Host port for the Flame dashboard. |
| password set me | string | "changeme-please" | Password for edit/admin mode (PASSWORD). Viewing is public; changes require this. |
| data_volume | string | "flame_data" | Named volume for the SQLite database and uploads (/app/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 = 200
memory = 128
} | The task resources. |
No variables match.
Flame — a self-hosted startpage / application dashboard you manage entirely from the browser: add apps and bookmarks, group them, pin favourites, and see live weather. Unlike config-file dashboards, everything is edited in the UI.
Single host-networked Nomad service on SQLite with a data volume.
nomad-pack registry add nomploy https://github.com/Nomploy/nomad-packs
nomad-pack run flame --registry=nomploy
| Variable | Default | Description |
|---|---|---|
port |
5005 |
Dashboard port (PORT). |
password |
changeme-please |
Password for edit/admin mode (PASSWORD). Change it. |
data_volume |
flame_data |
/app/data — SQLite database + uploads. |
image |
pawelmalak/flame:latest |
Container image. Pin a tag in production. |
resources |
{ cpu = 200, memory = 128 } |
Task resources. |
Viewing is public; adding/editing requires the password. See also the config-file dashboards
homepage and glance. Pin the job to the node holding the volume with
constraints.