Nomploy Nomad Packs

← All packs

dozzle v0.1.0

Observability

Dozzle — a lightweight, real-time log viewer for Docker containers in your browser. Deployed as a host-networked Nomad service that reads the Docker socket; no database, no persistence.

nomad-pack run dozzle --registry nomploy
1 task http 8091 image amir20/dozzle:latest
Variables 7
values.hcl

Save as values.hcl, edit, then run:

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

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

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

# The Dozzle container image. Pin a tag in production.
image = "amir20/dozzle:latest"

# Host port for the Dozzle web UI. Default 8091 to avoid common clashes.
port = 8091

# Placement constraints. Dozzle shows the containers on the node it runs on, so pin it where you want to view logs. On a nomploy cluster: attribute = "$${meta.nomploy_control_plane}", operator = "=", value = "true".
constraints = []

# The task resources.
resources = {
    cpu    = 200
    memory = 128
  }
NameTypeDefaultDescription
job_name string
"dozzle"
The name of the Nomad job.
namespace string
"default"
The Nomad namespace to deploy into.
datacenters list
["*"]
The datacenters to deploy to.
image string
"amir20/dozzle:latest"
The Dozzle container image. Pin a tag in production.
port number
8091
Host port for the Dozzle web UI. Default 8091 to avoid common clashes.
constraints list
[]
Placement constraints. Dozzle shows the containers on the node it runs on, so pin it where you want to view logs. On a nomploy cluster: attribute = "$${meta.nomploy_control_plane}", operator = "=", value = "true".
resources object
{
    cpu    = 200
    memory = 128
  }
The task resources.
Readme

dozzle

Dozzle — a lightweight, real-time log viewer for Docker containers, right in your browser. No database, no persistence — it just streams logs live from the Docker socket. A quick way to tail container logs without standing up the full loki stack.

Usage

nomad-pack registry add nomploy github.com/Nomploy/nomad-packs
nomad-pack run dozzle --registry nomploy

In nomploy: create a Compose service, type Nomad Pack, pack dozzle, custom registry github.com/Nomploy/nomad-packs, then Deploy.

Open http://<node-ip>:8091.

Key variables

Variable Default Notes
image amir20/dozzle:latest Pin a tag in production.
port 8091 Web UI host port.
constraints [] Pin to the node whose containers you want to view.
resources cpu 200 / mem 128 Lightweight.

Notes