Initialize project with clean ignore rules

This commit is contained in:
2026-03-09 04:08:19 +00:00
commit be6bf12d35
85 changed files with 4285 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
---
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
```