Uptime Kuma
Uptime Kuma is a self-hosted status monitoring solution that allows you to monitor the uptime of your services. It provides a web interface to track the availability of your applications and services, making it easy to identify issues and ensure your systems are running smoothly.
services: uptime-kuma: image: louislam/uptime-kuma:latest container_name: uptime-kuma ports: - 3001:3001 volumes: - uptime-kuma_data:/app/data - /var/run/docker.sock:/var/run/docker.sock restart: unless-stopped
volumes: uptime-kuma_data: name: uptime-kuma_data
Configuration
Section titled “Configuration”You can access Uptime Kuma by navigating to http://localhost:3001
in your web browser. The interface allows you to add services to monitor, configure notification settings, and view the status of your monitored services.
To use Uptime Kuma, follow these steps:
-
Start the Uptime Kuma container using the provided
docker-compose.yaml
configuration. -
Open your web browser and go to
http://localhost:3001
. -
Create an account or log in if you already have one.
-
Add services to monitor by clicking on the “Add Monitor” button.
-
Configure the monitoring settings for each service, including the URL to check, the check interval, and notification settings.
-
Save the configuration and Uptime Kuma will start monitoring the specified services.