mirror of
https://github.com/tborychowski/self-hosted-cookbook.git
synced 2025-05-13 10:53:38 +00:00
uptime kuma
This commit is contained in:
parent
806f85330f
commit
9cd55b5515
@ -195,10 +195,11 @@ The aims is to provide a ready-to-run recipes that you can just copy, paste and
|
||||
# Monitors
|
||||
### Self-hosted
|
||||
- [Cachet](apps/monitors/cachet.md)
|
||||
- [CheckMK](apps/monitors/checkmk.md)
|
||||
- [Dockprom](apps/monitors/dockprom.md)
|
||||
- [Uptime Kuma](apps/monitors/uptime-kuma.md)
|
||||
- [PhpServerMonitor](apps/monitors/php-server-monitor.md)
|
||||
- [Statping](apps/monitors/statping.md)
|
||||
- [CheckMK](apps/monitors/checkmk.md)
|
||||
|
||||
### Other, not-fully tested
|
||||
- [Staytus](https://github.com/adamcooke/staytus) 🔗 - service status is updated manually!
|
||||
|
30
apps/monitors/uptime-kuma.md
Normal file
30
apps/monitors/uptime-kuma.md
Normal file
@ -0,0 +1,30 @@
|
||||
# Uptime Kuma
|
||||
It is a self-hosted monitoring tool like "Uptime Robot".
|
||||
|
||||
- One of the best monitoring services that I've tested!
|
||||
- Simple yet configurable, and a very nice design overall
|
||||
- Fast and snappy!
|
||||
- Great status page, that's available without a login
|
||||
- Large number of options, notification services, etc.
|
||||
- Supports 2fa or disabling authentication (if you wish to run it locally)
|
||||
|
||||
<br>
|
||||
|
||||
- [Github repo](https://github.com/louislam/uptime-kuma)
|
||||
- [Demo](https://demo.uptime.kuma.pet/)
|
||||
- [Tutorial blog post](https://homegrowntechie.com/uptime-kuma/)
|
||||
|
||||
## docker-compose.yml
|
||||
```yml
|
||||
version: '3.3'
|
||||
services:
|
||||
uptime-kuma:
|
||||
image: louislam/uptime-kuma
|
||||
container_name: uptimekuma
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- ./data:/app/data
|
||||
ports:
|
||||
- 3001:3001
|
||||
```
|
||||
First launch in browser will bring up a setup wizard.
|
Loading…
Reference in New Issue
Block a user