CloudBeaver — a browser-based database manager from the DBeaver team: connect to PostgreSQL, MySQL/MariaDB, SQLite, ClickHouse, and many more, and browse schemas, run SQL, and edit data. Deployed as a single host-networked Nomad service with a workspace volume.
Save as values.hcl, edit, then run:
# The name of the Nomad job.
job_name = "cloudbeaver"
# The Nomad namespace to deploy into.
namespace = "default"
# The datacenters to deploy to.
datacenters = ["*"]
# The CloudBeaver container image. Pin a tag in production.
image = "dbeaver/cloudbeaver:latest"
# Host port for the CloudBeaver web UI.
port = 8978
# Named volume for the CloudBeaver workspace — connections, users, settings (/opt/cloudbeaver/workspace).
data_volume = "cloudbeaver_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 = 500
memory = 512
}
| Name | Type | Default | Description |
|---|---|---|---|
| job_name | string | "cloudbeaver" | The name of the Nomad job. |
| namespace | string | "default" | The Nomad namespace to deploy into. |
| datacenters | list | ["*"] | The datacenters to deploy to. |
| image | string | "dbeaver/cloudbeaver:latest" | The CloudBeaver container image. Pin a tag in production. |
| port | number | 8978 | Host port for the CloudBeaver web UI. |
| data_volume | string | "cloudbeaver_data" | Named volume for the CloudBeaver workspace — connections, users, settings (/opt/cloudbeaver/workspace). |
| 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 = 500
memory = 512
} | The task resources. |
No variables match.
CloudBeaver — a browser-based database manager from the DBeaver team. Connect to PostgreSQL, MySQL/MariaDB, SQLite, ClickHouse, and many more; browse schemas, run SQL, and edit data.
Single host-networked Nomad service with a workspace volume.
nomad-pack registry add nomploy https://github.com/Nomploy/nomad-packs
nomad-pack run cloudbeaver --registry=nomploy
| Variable | Default | Description |
|---|---|---|
port |
8978 |
Web UI port. |
data_volume |
cloudbeaver_data |
/opt/cloudbeaver/workspace — connections, users, settings. |
image |
dbeaver/cloudbeaver:latest |
Container image. Pin a tag in production. |
resources |
{ cpu = 500, memory = 512 } |
Task resources. |
Run the setup wizard on first visit, then add connections (a co-located postgres/mariadb/clickhouse
pack is on 127.0.0.1). CloudBeaver grants broad database access — keep it internal or behind auth.
Pin the job to the node holding the volume with constraints.