Docker Images
Dagu publishes multiple container images to GitHub Container Registry at ghcr.io/dagu-org/dagu. All images are multi-arch (linux/amd64, linux/arm64, linux/arm/v7) and ship with the same defaults: listen on 8080, run dagu start-all, and honor PUID/PGID/DAGU_* environment variables.
Image overview
| Tag(s) | Base | Package Manager | What's inside | Use when |
|---|---|---|---|---|
latest, <version> | Ubuntu 24.04 | apt | Core runtime + sudo, tzdata, jq | General deployments; closest to production defaults |
alpine, <version>-alpine | Alpine 3.22 | apk | Musl-based image with bash, sudo, jq, tzdata | Minimal footprint, Alpine-only environments |
dev, <version>-dev | Ubuntu 24.04 | apt | Adds build tools (git, curl/wget, zip/unzip, build-essential, python3/pip, openjdk-17, nodejs/npm, jq, tzdata) | Local development or workflows that need compilers/SDKs baked in |
Prefer pinning to a specific version tag (
ghcr.io/dagu-org/dagu:<version>) for reproducible deployments.
Examples
Standard image:
bash
docker run -d -p 8525:8080 -v dagu-data:/var/lib/dagu ghcr.io/dagu-org/dagu:latestAlpine image:
bash
docker run -d -p 8525:8080 -v dagu-data:/var/lib/dagu ghcr.io/dagu-org/dagu:alpineDev image with extra tooling:
bash
docker run -d -p 8525:8080 -v dagu-data:/var/lib/dagu ghcr.io/dagu-org/dagu:devFor Docker-in-Docker workflows, mount the host socket and run as root:
bash
docker run -d -p 8525:8080 -v dagu-data:/var/lib/dagu -v /var/run/docker.sock:/var/run/docker.sock --user 0:0 ghcr.io/dagu-org/dagu:latestCustom Images
If your workflows require additional tools (Python, Perl, Ruby, etc.) not included in the standard images, build a custom image based on Dagu:
dockerfile
FROM ghcr.io/dagu-org/dagu:latest
# Install additional packages
RUN apt-get update && apt-get install -y \
python3 \
python3-pip \
perl \
&& rm -rf /var/lib/apt/lists/*
# Install Python packages if needed
RUN pip3 install --break-system-packages requests pandasBuild and run:
bash
docker build -t my-dagu .
docker run -d -p 8080:8080 -v dagu-data:/var/lib/dagu my-dagu