mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-05 00:00:32 +00:00
53 lines
2.2 KiB
YAML
53 lines
2.2 KiB
YAML
# [Healthchecks](https://github.com/healthchecks/healthchecks) is a watchdog for
|
|
# your cron jobs. It's a web server that listens for pings from your cron jobs,
|
|
# plus a web interface.
|
|
|
|
---
|
|
version: "2.1"
|
|
services:
|
|
healthchecks:
|
|
image: ghcr.io/linuxserver/healthchecks
|
|
container_name: healthchecks
|
|
environment:
|
|
# for UserID
|
|
- PUID=${PUID:-1024}
|
|
# for GroupID
|
|
- PGID=${PGID:-100}
|
|
# The site's top-level URL and the port it listens to if differrent than 80 or 443 (e.g., https://healthchecks.example.com:8000)
|
|
- SITE_ROOT=<SITE_ROOT>
|
|
# The site's name (e.g., "Example Corp HealthChecks")
|
|
- SITE_NAME=<SITE_NAME>
|
|
# From email for alerts
|
|
- DEFAULT_FROM_EMAIL=<DEFAULT_FROM_EMAIL>
|
|
# SMTP host
|
|
- EMAIL_HOST=<EMAIL_HOST>
|
|
# SMTP port
|
|
- EMAIL_PORT=<EMAIL_PORT>
|
|
# SMTP user
|
|
- EMAIL_HOST_USER=<EMAIL_HOST_USER>
|
|
# SMTP password
|
|
- EMAIL_HOST_PASSWORD=<EMAIL_HOST_PASSWORD>
|
|
# Use TLS for SMTP (`True` or `False`)
|
|
- EMAIL_USE_TLS=<True or False>
|
|
# Superuser email
|
|
- SUPERUSER_EMAIL=<SUPERUSER_EMAIL>
|
|
# Superuser password
|
|
- SUPERUSER_PASSWORD=<SUPERUSER_PASSWORD>
|
|
# Defaults to False. Set to true to always override the `local_settings.py` file with values from environment variables. Do not set to True if you have made manual modifications to this file.
|
|
- REGENERATE_SETTINGS=True/False # optional
|
|
# Custom site logo URL
|
|
- SITE_LOGO_URL=<SITE_LOGO_URL> # optional
|
|
# array of valid hostnames for the server `["test.com","test2.com"]` (default: `["*"]`)
|
|
- ALLOWED_HOSTS=<ALLOWED_HOSTS> # optional
|
|
# A secret key used for cryptographic signing. docker-healthchecks will generate a secure value if one does not exist
|
|
- SECRET_KEY=<SECRET_KEY> # optional
|
|
# Defaults to False. A boolean that turns on/off the Apprise integration (https://github.com/caronc/apprise)
|
|
- APPRISE_ENABLED=True/False # optional
|
|
volumes:
|
|
# database and healthchecks config directory volume mapping
|
|
- ${BASEDIR:-/volume1/docker}/healthchecks/config:/config
|
|
ports:
|
|
# will map the container's port 8000 to port 8000 on the host
|
|
- 8000:8000
|
|
restart: unless-stopped
|