Selfhosting Uptime Kuma

YouTube Video Tutorial

If you prefer a visual walkthrough, you can watch our step-by-step video guide here:

Uptime Kuma is an easy-to-use self-hosted monitoring tool.

Docker Compose Setup

version: "3"
services:
  uptime-kuma:
    image: louislam/uptime-kuma:1
    container_name: uptime-kuma
    ports:
      - "3001:3001"
    volumes:
      - ./uptime-kuma-data:/app/data
    restart: unless-stopped