Healthchecks.io

Healthchecks - A cron job monitoring service

8000
Default Port
2
Services
21.5/20
Complexity
Medium
Memory Usage
Configuration

Installation Command

blastdock init healthchecks

Template Overview

Everything you need to deploy Healthchecks with BlastDock

Quick Deploy

One command deployment

Secure

Production-ready security

Configurable

Customizable settings

Scalable

Ready to scale up

What's Included

Healthchecks
healthchecks/healthchecks:latest
Postgres
postgres:13
Categories
Database, Monitoring
Security Features
Password Protection, Admin User
Resource Requirements
CPU: Medium, Memory: Medium , Storage Required

Quick Commands

blastdock init Initialize new project
blastdock deploy Deploy the application
blastdock status Check deployment status
blastdock logs View application logs

Quick Installation

Get Healthchecks up and running in minutes with our one-click installation.

BlastDock Installation

First, install BlastDock using pip (recommended):

Terminal
pip install blastdock

Then deploy Healthchecks with:

Terminal
blastdock init healthchecks

Interactive mode:

Terminal
blastdock init healthchecks -i

What's Included

Healthchecks
Container service
Postgres
Container service

BlastDock Commands

blastdock templates List available templates
blastdock status project Check deployment status
blastdock logs project View application logs
blastdock stop project Stop deployment

Configuration Options

Customize your Healthchecks installation with these configuration options.

5
Required Fields
0
Optional Fields
2
Auto-Generated Passwords

Port

Web interface port

port
Default: 8000
Required: Yes

Db Password

Database password

password
Default: ••••••••••••
Required: Yes
Security: Auto-generated

Secret Key

Django secret key

password
Default: ••••••••••••
Required: Yes
Security: Auto-generated

Admin Email

Admin email

string
Required: Yes

Site Name

Site name

string
Default: Healthchecks
Required: Yes

Docker Compose

Complete Docker Compose configuration for Healthchecks deployment.

2
Services
2
Volumes
1
Networks
1
Exposed Ports
docker-compose.yml
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