You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
2.8 KiB
YAML

3 years ago
# [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.
3 years ago
---
version: "2.1"
services:
healthchecks:
image: ghcr.io/linuxserver/healthchecks
container_name: healthchecks
environment:
# for UserID
2 years ago
- PUID=${PUID:-1024}
# for GroupID
3 years ago
- PGID=${PGID:-100}
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
- TZ=${TZ:-Europe/Amsterdam}
3 years ago
# 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)
2 years ago
- SITE_ROOT=
3 years ago
# The site's name (e.g., "Example Corp HealthChecks")
2 years ago
- SITE_NAME=
3 years ago
# From email for alerts
2 years ago
- DEFAULT_FROM_EMAIL=
3 years ago
# SMTP host
2 years ago
- EMAIL_HOST=
3 years ago
# SMTP port
2 years ago
- EMAIL_PORT=
3 years ago
# SMTP user
2 years ago
- EMAIL_HOST_USER=
3 years ago
# SMTP password
2 years ago
- EMAIL_HOST_PASSWORD=
3 years ago
# Use TLS for SMTP (`True` or `False`)
2 years ago
- EMAIL_USE_TLS=
3 years ago
# Superuser email
2 years ago
- SUPERUSER_EMAIL=
3 years ago
# Superuser password
2 years ago
- 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.
2 years ago
- REGENERATE_SETTINGS= # optional
4 months ago
# A [list](https://docs.python.org/3/tutorial/introduction.html#lists) of valid hostnames for the server. Default is: `["*"]`
2 years ago
- ALLOWED_HOSTS= # optional
4 months ago
# A [list](https://docs.python.org/3/tutorial/introduction.html#lists) of trusted origins for unsafe requests (e.g. POST). Defaults to the value of `SITE_ROOT`.
- CSRF_TRUSTED_ORIGINS= # optional
2 years ago
# Defaults to False. A boolean that turns on/off the Apprise integration (https://github.com/caronc/apprise)
2 years ago
- APPRISE_ENABLED= # optional
2 years ago
# Defaults to True. Debug mode relaxes CSRF protections and increases logging verbosity but should be disabled for production instances as it will impact performance and security.
- DEBUG= # optional
# Defaults to False. Set to True to allow integrations to connect to private IP addresses.
- INTEGRATIONS_ALLOW_PRIVATE_IPS= # optional
# The domain to use for generating ping email addresses.
- PING_EMAIL_DOMAIN= # optional
# A secret key used for cryptographic signing. Will generate a secure value if one is not supplied
- SECRET_KEY= # optional
# Full URL to custom site logo
- SITE_LOGO_URL= # optional
3 years ago
volumes:
5 months ago
# Persistent config files
3 years ago
- ${BASEDIR:-/volume1/docker}/healthchecks/config:/config
ports:
# Healthchecks Web UI
3 years ago
- 8000:8000
# Port for inbound SMTP pings
- 2525:2525 # optional
3 years ago
restart: unless-stopped