Files
docs-public/projects/uptime-kuma/index.md
wompmacho 11a1fd1e4b
All checks were successful
deploy-docs / build-and-deploy (push) Successful in 43s
updating meta for hugo / blowfish theme
2026-03-27 17:27:23 +00:00

35 lines
848 B
Markdown

---
title: uptime-kuma
description: Quick overview of uptime-kuma and setup
date: 2025-02-04
lastmod: 2025-02-04
author: wompmacho
showHero: false
tags: []
---
## What is uptime-kuma?
`uptime-kuma` is a neat little web monitoring application. Lotta dope things right
out of the box, very gui / user friendly. Pretty much just add the stack, update
the dir for config - and it works. Integrates with discord webhooks, great easy
status page and dashboard.
## Docker Compose Example
```yaml
# uptime-kuma - docker compose
---
## https://github.com/louislam/uptime-kuma/wiki/%F0%9F%94%A7-How-to-Install
version: '3.3'
services:
uptime-kuma:
container_name: uptime-kuma
image: louislam/uptime-kuma:1
volumes:
- /app/uptime-kuma/data:/app/data
ports:
- 3001:3001 # <Host Port>:<Container Port>
restart: always
```