Healthchecks - A cron job monitoring service
Everything you need to deploy Healthchecks 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 Healthchecks up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Healthchecks with:
blastdock init healthchecks
Interactive mode:
blastdock init healthchecks -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 Healthchecks installation with these configuration options.
Web interface port
Database password
Django secret key
Admin email
Site name
Complete Docker Compose configuration for Healthchecks deployment.
version: '3.8'
services:
postgres:
image: postgres:13
container_name: {{ project_name }}_postgres
restart: unless-stopped
environment:
0: POSTGRES_PASSWORD={{ db_password }}
1: POSTGRES_USER=healthchecks
2: POSTGRES_DB=healthchecks
volumes:
- /var/lib/postgresql/data
networks:
- healthchecks_network
healthchecks:
image: healthchecks/healthchecks:latest
container_name: {{ project_name }}_healthchecks
restart: unless-stopped
depends_on:
- postgres
ports:
- "8000"
environment:
0: SECRET_KEY={{ secret_key }}
1: DEBUG=False
2: ALLOWED_HOSTS=*
3: DB=postgres
4: DB_NAME=healthchecks
5: DB_USER=healthchecks
6: DB_PASSWORD={{ db_password }}
7: DB_HOST=postgres
8: DB_PORT=5432
9: SITE_NAME={{ site_name }}
10: DEFAULT_FROM_EMAIL={{ admin_email }}
11: EMAIL_HOST=smtp.example.com
12: EMAIL_PORT=587
13: EMAIL_HOST_USER=
14: EMAIL_HOST_PASSWORD=
15: EMAIL_USE_TLS=True
volumes:
- /healthchecks
networks:
- healthchecks_network
volumes:
postgres_data:
driver: local
healthchecks_data:
driver: local
networks:
healthchecks_network:
driver: bridge