Uptime Kuma

Uptime Kuma is a simple uptime monitoring tool that allows you to monitor the uptime and status of your websites or docker containers. View their GitHub for more information.
Features:
- Monitoring uptime for HTTP(s) / TCP / Ping / DNS Record.
- Alerting with Email, Slack, Discord, etc.
- Beautiful dashboard and reports.
Installation
Docker Run
docker run -d --restart=unless-stopped -p 3001:3001 -v uptime-kuma:/app/data --name uptime-kuma louislam/uptime-kuma:1
Docker Compose
- Create a
docker-compose.yml
file
touch docker-compose.yml
- Add the following content to the
docker-compose.yml
file
services:
uptime-kuma:
image: louislam/uptime-kuma:1
container_name: uptime-kuma
volumes:
- /docker/uptimekuma:/app/data
ports:
- 3001:3001
- Start the container
docker-compose up -d
Access Uptime Kuma
http://<your-server-ip>:3001