dozzle

dozzle

Docker app from malvarez00's Repository

Overview

Dozzle is a lightweight, real-time web-based Docker log viewer and monitor. Authentication Note: When using simple authentication, you must generate a users.yml file in your appdata folder before starting the container. Run this command in the Unraid Terminal (replace admin and mypassword with your details): mkdir -p /mnt/user/appdata/dozzle && docker run -it --rm amir20/dozzle generate admin --password mypassword --name "Administrator" > /mnt/user/appdata/dozzle/users.yml If you do not want authentication, change the DOZZLE_AUTH_PROVIDER variable from 'simple' to 'none'.

Dozzle Logo

Dozzle - dozzle.dev

Dozzle is a lightweight, web-based application for monitoring Docker logs in real time. It doesn't store any log files—it's designed purely for live log viewing.

https://github.com/user-attachments/assets/66a7b4b2-d6c9-4fca-ab04-aef6cd7c0c31

Docker Image Size (latest by date) Docker Pulls Docker Version Test

[!NOTE] If you like Dozzle, check out dtop, a top-like application for monitoring Docker containers. It integrates with Dozzle to link directly to container logs.

Features

  • Intelligent fuzzy search for container names
  • Search logs using regex
  • Search logs using SQL queries
  • Small memory footprint
  • Split screen for viewing multiple logs
  • Live stats with memory and CPU usage
  • Multi-user authentication with support for forward proxy authorization
  • Swarm mode support
  • Agent mode for monitoring multiple Docker hosts
  • Dark mode

Dozzle has been tested with hundreds of containers. However, it doesn't support offline searching. Products like Loggly, Papertrail, or Kibana are better suited for full search capabilities.

Getting Started

Dozzle is a small container (7 MB compressed). Pull the latest release with:

$ docker pull amir20/dozzle:latest

Running Dozzle

The simplest way to use Dozzle is to run the Docker container. Mount the Docker Unix socket with --volume to /var/run/docker.sock:

$ docker run --name dozzle -d --volume=/var/run/docker.sock:/var/run/docker.sock -v dozzle_data:/data -p 8080:8080 amir20/dozzle:latest

Dozzle will be available at http://localhost:8080/.

Here is a Docker Compose example:

services:
  dozzle:
    container_name: dozzle
    image: amir20/dozzle:latest
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock
      - dozzle_data:/data
    ports:
      - 8080:8080
volumes:
  dozzle_data:

For advanced options like authentication, remote hosts, or common questions, see the documentation at dozzle.dev.

Image Tags

Images are published to both Docker Hub and ghcr.io with identical tags.

Tag Description
latest Most recent release. Recommended for most users.
v10.6.15 An exact release. Pin this for reproducible deployments.
v10.6 Latest patch within that minor version. Picks up bug fixes only.
v10 Latest release within that major version. Picks up new features too.
alpine Same as latest, but on an Alpine base instead of scratch.
v10.6.15-alpine, v10.6-alpine, v10-alpine Alpine variants of the version tags above.
master Built from the master branch on every push. Unreleased and unstable.
pr-1234, pr-1234-alpine Built from pull request #1234, for testing a fix before it ships.

The default images are built FROM scratch and contain only the Dozzle binary, which is why they are around 7 MB compressed. That also means there is no shell inside them. Use the alpine variants only if something in your setup needs one, most commonly platforms that bind-mount a #!/bin/sh wrapper over the container entrypoint such as Unraid's per-container Tailscale toggle. See the FAQ for details.

Avoid latest and master in production. latest moves on every release and master is unreleased code.

Swarm Mode

Dozzle works with Docker Swarm. You can run Dozzle as a global service:

$ docker service create --name dozzle --env DOZZLE_MODE=swarm --mode global --mount type=bind,source=/var/run/docker.sock,target=/var/run/docker.sock -p 8080:8080 amir20/dozzle:latest

See the Swarm Mode documentation for more details.

Agent Mode

Dozzle can monitor multiple Docker hosts. Run Dozzle in agent mode with:

$ docker run -v /var/run/docker.sock:/var/run/docker.sock -p 7007:7007 amir20/dozzle:latest agent

See the Agent Mode documentation for more details.

Technical Details

Dozzle uses automatic API negotiation, which works with most Docker configurations. Dozzle also works with Colima and Podman.

Dozzle requires Docker Engine 19.03 or newer (API version 1.40+). Older daemons are not supported by the underlying Docker SDK.

Installation on Podman

By default, Podman doesn't have a background process, but you can enable the remote socket for Dozzle to work.

First, verify if your Podman installation has the remote socket enabled:

podman info

If you see output like this under the remote socket key, it's already enabled:

  remoteSocket:
    exists: true
    path: /run/user/1000/podman/podman.sock

If it's not enabled, follow this tutorial to enable it.

Once the Podman remote socket is enabled, you can run Dozzle:

podman run --volume=/run/user/1000/podman/podman.sock:/var/run/docker.sock -d -p 8080:8080 docker.io/amir20/dozzle:latest

Nothing else is needed. Dozzle works out a stable host id for Podman on its own, since Podman is daemonless and has no engine identity to report.

[!NOTE] Older versions of this page told you to create a /var/lib/docker/engine-id file to prevent host not found errors. That never worked. Podman's Docker-compatible /info endpoint does not read any file, it returns a new random UUID on every call, so Dozzle now derives the id instead. You can delete the file.

For more details, see Podman Info or the FAQ.

Security

Dozzle supports file-based authentication and forward proxy authentication with tools like Authelia. See the documentation at https://dozzle.dev/guide/authentication.

Analytics

Dozzle collects anonymous user configurations using Google Analytics. Why? Dozzle is an open source project with no funding, so there's no time for formal user studies. Analytics help prioritize features and fixes based on how people use Dozzle. This data is completely public and can be viewed live on the Data Studio dashboard.

To disable analytics, use the --no-analytics flag.

Environment Variables and Configuration

Dozzle follows the 12-factor model. Configuration can be done via CLI flags or environment variables. See the documentation at dozzle.dev/guide/supported-env-vars for more details.

Support

There are many ways to support Dozzle:

  • Use it! Write about it! Star it! If you love Dozzle, drop me a line and tell me what you love.
  • Blog about Dozzle to spread the word. If you're good at writing, send PRs to improve the documentation at dozzle.dev.
  • Sponsor my work at https://www.buymeacoffee.com/amirraminfar

Buy Me A Coffee

License

MIT

Building

Want to contribute? Great! Dozzle has two parts: a Go backend that talks to Docker, and a Vue frontend that runs in the browser. You don't need to know both — pick the side that matches what you want to change. For documentation fixes, no setup is needed at all; just edit the file on GitHub.

1. Install the prerequisites

You'll need Go (1.25+), Node.js, Bun, and protoc.

On macOS, you can install everything in one go:

brew install go node oven-sh/bun/bun protobuf

On Linux (Debian/Ubuntu):

sudo apt install golang nodejs protobuf-compiler
curl -fsSL https://bun.com/install | bash

On Windows, we recommend using WSL2 and following the Linux instructions.

2. Clone and set up

git clone https://github.com/amir20/dozzle.git
cd dozzle
bun install                 # installs frontend dependencies
go install tool             # installs Go build tools listed in go.mod (air, protoc-gen-go, etc.)
make generate               # generates TLS certificates and protobuf code (only needed once)

3. Start the dev server

make dev

Open http://localhost:3100 — you should see the Dozzle UI connected to your local Docker. Both the frontend and backend reload automatically when you save a file.

Making your first change

Try editing assets/pages/index.vue and saving — the browser updates instantly. For backend changes, edit any .go file and the server will restart on its own.

Troubleshooting

  • Nothing shows up at localhost:3100 — make sure Docker is running and the socket is accessible at /var/run/docker.sock.
  • make generate fails — confirm protoc is on your PATH (protoc --version).
  • Still stuck? Open a question in GitHub Discussions — we're happy to help.

Adding App Icons

Dozzle shows a logo next to containers whose image it recognizes. Icons are vendored from homarr-labs/dashboard-icons into assets/icons/apps/, and matching happens in assets/utils/appIcons.ts.

The repo ships an add-app-icon skill in .claude/skills/. To add icons with an AI coding agent, paste this prompt and fill in the images:

Use the add-app-icon skill in .claude/skills/add-app-icon/SKILL.md to add app icons
for these container images: <image1>, <image2>

Install Dozzle on Unraid in a few clicks.

Find Dozzle in Community Apps on your Unraid server, review the template, and click Install. Unraid handles the Docker app or plugin setup from the published template.

Open the Apps tab on your Unraid server Search Community Apps for Dozzle Review the template variables and paths Click Install

Download Statistics

338,039,861
Total Downloads
10,735,956
This Month
8,968,262
Avg / Month

Total Downloads Over Time

Loading chart...

Related apps

Explore more like this

Explore all

Details

Repository
amir20/dozzle
Last Updated2026-09-01
First Seen2020-10-08

Runtime arguments

Web UI
http://[IP]:[PORT:8080]/
Network
bridge
Shell
sh
Privileged
false

Template configuration

WebUI PortPorttcp

Container WebUI Port

Target
8080
Default
8080
Value
8080
Docker SocketPathrw

Path to Docker socket on the Unraid host

Target
/var/run/docker.sock
Default
/var/run/docker.sock
Value
/var/run/docker.sock
Appdata StoragePathrw

Directory where users.yml is located

Target
/data
Default
/mnt/user/appdata/dozzle
Value
/mnt/user/appdata/dozzle
Auth ProviderVariable

Authentication provider ('simple', 'none', 'forward-proxy', or 'oidc')

Target
DOZZLE_AUTH_PROVIDER
Default
simple
Value
simple
Enable Container ActionsVariable

Allow starting, stopping, and restarting containers from the WebUI (true/false)

Target
DOZZLE_ENABLE_ACTIONS
Default
false
Value
false
Enable Web Terminal ShellVariable

Allow attaching to container console/terminal from the WebUI (true/false)

Target
DOZZLE_ENABLE_SHELL
Default
false|true
Value
false
Container FilterVariable

Filter visible containers (e.g., status=running or name=app)

Target
DOZZLE_FILTER
Base URLVariable

Base URL subpath if running behind a reverse proxy sub-folder (e.g. /dozzle)

Target
DOZZLE_BASE
Default
/
Value
/
Log LevelVariable

Logging level (trace, debug, info, warn, error)

Target
DOZZLE_LEVEL
Default
trace|debug|info|warn|error
Value
info
Disable AnalyticsVariable

Disable anonymous telemetry

Target
DOZZLE_NO_ANALYTICS
Default
true|false
Value
true