In the Healthchecks source code, /docker/ directory, you can find a sample configuration for running the project with Docker and Docker Compose.
Note: For the sake of simplicity, the sample configuration starts a single database node and a single web server node, both on the same host. It does not handle TLS termination.
Copy docker/.env.example
to docker/.env
and add your configuration in it.
As a minimum, set the following fields:
ALLOWED_HOSTS
– the domain name of your Healthchecks instance.
Example: ALLOWED_HOSTS=hc.example.org
.DEFAULT_FROM_EMAIL
– the "From:" address for outbound emails.EMAIL_HOST
– the SMTP server.EMAIL_HOST_PASSWORD
– the SMTP password.EMAIL_HOST_USER
– the SMTP username.SECRET_KEY
– secures HTTP sessions, set to a random value.SITE_ROOT
– The base public URL of your Healthchecks instance. Example:
SITE_ROOT=https://hc.example.org
.Create and start containers:
$ cd docker
$ docker-compose up
Create a superuser:
$ docker-compose run web /opt/healthchecks/manage.py createsuperuser
Open http://localhost:8000 in your browser and log in with the credentials from the previous step.
The reference Dockerfile uses uWSGI
as the WSGI server. You can configure uWSGI by setting UWSGI_...
environment
variables in docker/.env
. For example, to disable HTTP request logging, set:
UWSGI_DISABLE_LOGGING=1
Read more about configuring uWSGI in uWSGI documentation.
If you plan to expose your Healthchecks instance to the public internet, make sure you put a TLS-terminating reverse proxy in front of it.
Important: This Dockerfile uses UWSGI, which relies on the X-Forwarded-Proto header to determine if a request is secure or not. Make sure your TLS-terminating reverse proxy:
For example, in NGINX you can use the $scheme
variable like so:
proxy_set_header X-Forwarded-Proto $scheme;
Pre-built Docker images, built from the Dockerfile in the /docker/
directory,
are available on Docker Hub.
The images are built automatically for every new release. The Docker images support
amd64, arm/v7 and arm64 architectures.
To use a pre-built image for Healthchecks version X.Y, in the docker-compose.yml
file
replace the "build" section with:
image: healthchecks/healthchecks:v2.10