Installation¶
Docker (Recommended)¶
AutoKuma is available as a Docker image on the GitHub Container Registry.
Using the latest tag
You can also use the latest tag, which always points to the most recent stable release. However, a versioned tag like 2.0.0 is preferred - it ensures reproducible deployments and keeps you in explicit control of when to update.
Dev builds
Development builds (master tag) may contain breaking changes without warning. Do not use them in production.
Uptime Kuma V1
For Uptime Kuma V1, use the following image instead:
Docker Compose¶
Here is a minimal docker-compose.yml to get AutoKuma running alongside Uptime Kuma:
version: '3'
services:
autokuma:
image: ghcr.io/bigboot/autokuma:2.0.0
restart: unless-stopped
environment:
AUTOKUMA__KUMA__URL: http://uptime-kuma:3001
# AUTOKUMA__KUMA__USERNAME: <username>
# AUTOKUMA__KUMA__PASSWORD: <password>
# AUTOKUMA__KUMA__MFA_TOKEN: <token>
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- autokuma-data:/data
volumes:
autokuma-data:
Prebuilt Binaries¶
Prebuilt binaries for Windows, Linux, and macOS are available on the GitHub Releases page.