33 lines
869 B
Markdown
33 lines
869 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 # needed to hide "hero banner"
|
|
---
|
|
|
|
## 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
|
|
``` |