Skip to content
This repository was archived by the owner on May 7, 2023. It is now read-only.

Latest commit

 

History

History
40 lines (31 loc) · 1.66 KB

README.md

File metadata and controls

40 lines (31 loc) · 1.66 KB

Healthchecks

Github Stars GitHub readme Docker Stars Docker Hub

Version Docker Pulls

Healthchecks Docker Image with multi-arch support.

Requires a database like postgres. For further configuration options visit the healthchecks repo.

Docker compose

---
version: "3"
services:
  healthchecks:
    image: supersandro2000/healthchecks
    networks:
      - healthchecks
    restart: unless-stopped

  healthchecks-alerts:
    image: supersandro2000/healthchecks
    networks:
      - healthchecks
    command: /app/manage.py sendalerts
    restart: unless-stopped

Setup database with:

docker exec -it $PWD_healthchecks_1 ./manage.py migrate
docker exec -it $PWD_healthchecks_1 ./manage.py createsuperuser