Uptime Kuma - Self-hosted monitoring tool
Everything you need to deploy Uptime-kuma with BlastDock
One command deployment
Production-ready security
Customizable settings
Ready to scale up
blastdock init
Initialize new project
blastdock deploy
Deploy the application
blastdock status
Check deployment status
blastdock logs
View application logs
Get Uptime-kuma up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Uptime-kuma with:
blastdock init uptime-kuma
Interactive mode:
blastdock init uptime-kuma -i
blastdock templates
List available templates
blastdock status project
Check deployment status
blastdock logs project
View application logs
blastdock stop project
Stop deployment
Customize your Uptime-kuma installation with these configuration options.
Web interface port
Complete Docker Compose configuration for Uptime-kuma deployment.
version: '3.8'
services:
uptime-kuma:
image: louislam/uptime-kuma:latest
container_name: {{ project_name }}_uptime_kuma
restart: unless-stopped
ports:
- "3001"
volumes:
- /app/data
networks:
- uptime_kuma_network
volumes:
uptime_kuma_data:
driver: local
networks:
uptime_kuma_network:
driver: bridge