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.

61 lines
2.5 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.
4 years ago
---
version: "2.1"
services:
healthchecks:
image: ghcr.io/linuxserver/healthchecks
container_name: healthchecks
environment:
# for UserID
3 years ago
- PUID=${PUID:-1024}
# for GroupID
4 years ago
- 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)
2 years ago
- SITE_ROOT=
4 years ago
# The site's name (e.g., "Example Corp HealthChecks")
2 years ago
- SITE_NAME=
4 years ago
# From email for alerts
2 years ago
- DEFAULT_FROM_EMAIL=
4 years ago
# SMTP host
2 years ago
- EMAIL_HOST=
4 years ago
# SMTP port
2 years ago
- EMAIL_PORT=
4 years ago
# SMTP user
2 years ago
- EMAIL_HOST_USER=
4 years ago
# SMTP password
2 years ago
- EMAIL_HOST_PASSWORD=
4 years ago
# Use TLS for SMTP (`True` or `False`)
2 years ago
- EMAIL_USE_TLS=
4 years ago
# Superuser email
2 years ago
- SUPERUSER_EMAIL=
4 years ago
# Superuser password
2 years ago
- SUPERUSER_PASSWORD=
2 years ago
# 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
# Array of valid hostnames for the server `["test.com","test2.com"]` (default: `["*"]`)
- ALLOWED_HOSTS= # optional
3 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
2 years ago
# 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
4 years ago
volumes:
2 years ago
# Database and healthchecks config directory
4 years ago
- ${BASEDIR:-/volume1/docker}/healthchecks/config:/config
ports:
2 years ago
# Healthchecks Web UI
4 years ago
- 8000:8000
2 years ago
# Port for inbound SMTP pings
- 2525:2525 # optional
4 years ago
restart: unless-stopped