Nomploy Nomad Packs

← All packs

memos v0.1.0

Apps

Memos — a lightweight, privacy-first note-taking / knowledge base for quick memos with Markdown, tags, and a public/private sharing model. Deployed as a single host-networked Nomad service on SQLite with a persistent data volume.

nomad-pack run memos --registry nomploy
1 task http 5230 1 volume image ghcr.io/usememos/memos:stable
Variables 8
values.hcl

Save as values.hcl, edit, then run:

nomad-pack run memos -f values.hcl --registry nomploy
# The name of the Nomad job.
job_name = "memos"

# The Nomad namespace to deploy into.
namespace = "default"

# The datacenters to deploy to.
datacenters = ["*"]

# The Memos container image. Pin a tag in production.
image = "ghcr.io/usememos/memos:stable"

# Host port for the Memos web UI (MEMOS_PORT).
port = 5230

# Named volume for the SQLite database and uploads (/var/opt/memos).
data_volume = "memos_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
  }
NameTypeDefaultDescription
job_name string
"memos"
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/usememos/memos:stable"
The Memos container image. Pin a tag in production.
port number
5230
Host port for the Memos web UI (MEMOS_PORT).
data_volume string
"memos_data"
Named volume for the SQLite database and uploads (/var/opt/memos).
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.
Readme

memos

Memos — a lightweight, privacy-first note-taking / knowledge base for quick memos with Markdown, tags, and public/private sharing.

Single host-networked Nomad service on SQLite with a persistent data volume.

Deploy

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

Configure

Variable Default Description
port 5230 Web UI port (MEMOS_PORT).
data_volume memos_data /var/opt/memos — SQLite database + uploads.
image ghcr.io/usememos/memos:stable Container image. Pin a tag in production.
resources { cpu = 300, memory = 128 } Task resources.

The first account created becomes the admin. Pin the job to the node holding the volume with constraints.