repos
/ status-django master

status-django

mirror archived upstream

Self-hostable uptime monitor and status page on Django: HTTP checks, Lighthouse audits, SEO crawls, and email and Discord alerts.

djangodockerhandcodedpythonself-hostedsqlitestatus-pageuptime-monitoringvite

245 B · 13 lines · YAML Raw History
 1services:
 2  web:
 3    container_name: status_web
 4    build: .
 5    env_file: .env
 6    volumes:
 7      - /srv/data/status/:/data/
 8    ports:
 9      - "127.0.0.1:${PORT}:${PORT}"
10    command: ./entrypoint.py
11    restart: unless-stopped
12    init: true