Nomploy Nomad Packs

← All packs

flowise v0.1.0

AI

Flowise — a low-code, drag-and-drop builder for LLM apps and agents: chains, RAG pipelines, tools, and chatbots you can embed or call via API. Deployed as a single host-networked Nomad service with a data volume and optional app login. Pairs with the ollama and qdrant/weaviate packs.

nomad-pack run flowise --registry nomploy
1 task http 3014 1 volume image flowiseai/flowise:latest
Variables 10
values.hcl

Save as values.hcl, edit, then run:

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

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

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

# The Flowise container image. Pin a tag in production.
image = "flowiseai/flowise:latest"

# Host port for the Flowise web UI / API (PORT).
port = 3014

# App login username (FLOWISE_USERNAME). Empty for both = no login (open).
username = "admin"

# App login password (FLOWISE_PASSWORD). CHANGE THIS.
password = "changeme-please"

# Named volume for the Flowise database, API keys, and stored files (/root/.flowise).
data_volume = "flowise_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    = 1000
    memory = 1024
  }
NameTypeDefaultDescription
job_name string
"flowise"
The name of the Nomad job.
namespace string
"default"
The Nomad namespace to deploy into.
datacenters list
["*"]
The datacenters to deploy to.
image string
"flowiseai/flowise:latest"
The Flowise container image. Pin a tag in production.
port number
3014
Host port for the Flowise web UI / API (PORT).
username string
"admin"
App login username (FLOWISE_USERNAME). Empty for both = no login (open).
password set me string
"changeme-please"
App login password (FLOWISE_PASSWORD). CHANGE THIS.
data_volume string
"flowise_data"
Named volume for the Flowise database, API keys, and stored files (/root/.flowise).
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    = 1000
    memory = 1024
  }
The task resources.
Readme

flowise

Flowise — a low-code, drag-and-drop builder for LLM apps and agents: chains, RAG pipelines, tools, and chatbots you can embed or call via API.

Single host-networked Nomad service with a data volume and optional app login. Pairs with the ollama, qdrant, and weaviate packs for a local AI stack.

Deploy

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

Configure

Variable Default Description
port 3014 Web UI / API port (PORT).
username / password admin / changeme-please App login (FLOWISE_USERNAME/PASSWORD). Empty username = no login. Change the password.
data_volume flowise_data /root/.flowise — database, API keys, files.
image flowiseai/flowise:latest Container image. Pin a tag in production.
resources { cpu = 1000, memory = 1024 } Task resources.

Point LLM nodes at the ollama pack (http://127.0.0.1:11434) and vector stores at qdrant/weaviate. Pin the job to the node holding the volume with constraints.