Gain complete visibility into your infrastructure with this simple, end-to-end monitoring platform. It provides real-time insights, powerful analytics, and instant alerts to help you monitor your servers with confidence. As a fully open-source and self-hosted solution, you maintain complete control and privacy over your data, free from the complexity of traditional enterprise software.
Key monitoring capabilities include:
Manage your operations effectively with built-in incident management, instant email notifications, and the ability to schedule maintenance windows.
services:
checkmate:
image: ghcr.io/bluewave-labs/checkmate:latest
container_name: checkmate
restart: unless-stopped
ports:
- "8080:8080"
environment:
- DATABASE_URL=postgres://${DB_USER}:${DB_PASSWORD}@db:5432/${DB_NAME}
- SECRET_KEY=${SECRET_KEY}
volumes:
- ./checkmate-data:/data
depends_on:
- db
db:
image: postgres:15-alpine
container_name: checkmate_db
restart: unless-stopped
environment:
- POSTGRES_USER=${DB_USER}
- POSTGRES_PASSWORD=${DB_PASSWORD}
- POSTGRES_DB=${DB_NAME}
volumes:
- ./db-data:/var/lib/postgresql/dataDB_USER=checkmate_user
DB_PASSWORD=your_super_secret_password
DB_NAME=checkmate_db
SECRET_KEY=your_super_secret_keyAuto-fetched about 20 hours ago
Auto-fetched about 20 hours ago