0
0
Fork 0
mirror of https://github.com/healthchecks/healthchecks.git synced 2025-04-03 04:15:29 +00:00
Commit graph

109 commits

Author SHA1 Message Date
Pēteris Caune
279aed2080
Add --start-period and --start-interval in Dockerfile
... to make the container go into a healthy state sooner.

cc: 
2024-12-22 18:11:16 +02:00
Pēteris Caune
2dd4994259
Fix fetchstatus.py (again) to handle SITE_ROOT with a path
cc: 
2024-12-20 11:38:33 +02:00
Amin Vakil
81869989fb
Set pipefail true for bash in Dockerfile ()
Set pipefail true for bash in Dockerfile
2024-12-19 15:54:42 +02:00
Pēteris Caune
0f6099b311
Fix fetchstatus.py to handle SITE_ROOT with a path
Fixes: 
2024-12-19 09:35:31 +02:00
Pēteris Caune
45b8bd64df
Simplify hosting under subpath
Instead of using SCRIPT_NAME / FORCE_SCRIPT_NAME, PATH_INFO
and their associated issues, update urls.py to add the subpath
to all routes. This allows us to get rid of several hacks:

* the uwsgi.ini magic which parses SITE_ROOT, sets SCRIPT_NAME
  and fixes PATH_INFO
* set_script_prefix() in sendalerts
* chopping the subpath off an URL in hc.accounts.views._allow_redirect

The idea comes from @apollo13
in https://code.djangoproject.com/ticket/35985#comment:5

cc: 
2024-12-19 09:04:45 +02:00
Pēteris Caune
bc5354b05b
Switch off pip's verbose output 2024-12-18 08:51:29 +02:00
Pēteris Caune
fa2c3732cc
Remove "pip install --upgrade pip"
The base image already comes with an up-to-date pip
2024-12-17 14:46:06 +02:00
Pēteris Caune
28d1ce056e
Increase pip's verbosity to debug slow cryptography builds 2024-12-16 15:13:08 +02:00
Pēteris Caune
67dce23f56
Update Dockerfile to install rust using profile "minimal"
This should speed up the build a little bit.
2024-12-15 19:58:37 +02:00
Pēteris Caune
850cab6fa6
Update Dockerfile to use Python 3.13.1
cc: 
2024-12-13 10:06:51 +02:00
Pēteris Caune
2ff68cb597
Update docker/uwsgi.ini to handle subpath in SITE_ROOT
cc: 
2024-12-04 11:00:53 +02:00
Pēteris Caune
7d6fccb05d
Update package versions 2024-10-25 11:02:43 +03:00
Pēteris Caune
dd0a4c1582
Update Dockerfile to use Python 3.13 2024-10-23 13:22:41 +03:00
Pēteris Caune
9139d6825a
Update Dockerfile to explicitly install libexpat1
libexpat1 used to come preinstalled in python -slim base images,
but starting from 3.12.7 it does not any more.

Fixes: 
2024-10-23 13:19:59 +03:00
Pēteris Caune
7225165f9e
Remove --start-period argument in Dockerfile
I don't think it has any effect if it is lower than --interval
2024-10-23 13:15:48 +03:00
Pēteris Caune
5b689d9f87
Increase the interval of Docker HEALTHCHECK instruction to 60s
cc: 
2024-10-23 10:43:57 +03:00
Pēteris Caune
0bf73bf743
Rewrite the fetchstatus.py script to reduce Docker container CPU use
fetchstatus.py was a Django management command, and is now
a standalone script. This way we avoid doing Django housekeeping
every time it runs (every 10 seconds). It still needs to access
the ALLOWED_HOSTS setting, to make the HTTP request with
a correct Host header.

Fixes: 
2024-10-22 10:53:47 +03:00
Pēteris Caune
d723e14284
Switch to an older version of the base image
Related: 

This is temporary until we find out if libexpat will be
reinstated in the base image or not.
2024-10-21 12:08:15 +03:00
Pēteris Caune
71f92d19fa
Improve the "TLS Termination" section in docs
cc: 
2024-09-23 10:29:55 +03:00
Pēteris Caune
a72f3adc45
Update requirements to require only pure-python psycopg
... and install psycopg-c using instuctions in Dockerfile.

This way, getting a development environment or CI environment ready
is quick and easy, but Docker images still get the C optimizations.
2024-09-03 16:10:53 +03:00
Pēteris Caune
320a7c7733
Fix the Docker healthcheck script to supply correct Host header
Commit 8fed685f12 added a HEALTHCHECK
instruction in the Dockerfile. The healthcheck script calls http://localhost:8000/api/v3/status/, which fails if localhost is not in ALLOWED_HOSTS.

With this change, the healthcheck script is now a Django management
command. It reads Django's ALLOWED_HOSTS setting, grabs the first
element, and uses it in the "Host:" HTTP header when making a HTTP
request.

cc: 
2024-08-21 15:52:19 +03:00
Pēteris Caune
6f11b9c0dd
Remove unneeded bits 2024-08-20 13:27:28 +03:00
Pēteris Caune
79b9aae660
Update Dockerfile to install recent rustc (needed to build cryptography)
* Healthchecks depends on python library "fido2"
* fido2 depends on python library "cryptography"
* building cryptography requires recent (1.65+) rustc
* cryptography has prebuilt binary wheels for most architectures
  but not for arm/v7
* Dockerfile uses bookworm as base, which ships rustc 1.63
* So we now install rust using rustup

This is all terrible.
2024-08-20 13:11:29 +03:00
Pēteris Caune
15e1a988c8
Upgrade docker-compose.yml to use postgres 16, add upgrade instructions 2024-08-19 11:00:37 +03:00
Pēteris Caune
8fed685f12
Update Dockerfile to report container health in docker ps
This commit adds a HEALTHCHECK instruction in Dockerfile.
The HEALTHCHECK instruction calls /docker/fetchstatus.sh
which in turn makes a HTTP request to
http://localhost:8000/api/v3/status/
This endpoint makes a test database query and returns non-200
response if the query fails. So, in short, if the Healthchecks
container for any reason is unable to query database, `docker ps`
will now show the container as "unhealthy".

cc: 
2024-08-19 10:17:05 +03:00
Pēteris Caune
77f12085bf
Add a note about SMTPD_PORT in README 2024-04-22 14:55:15 +03:00
Pēteris Caune
7734839bcc
Fix Dockerfile to avoid having /wheels/ in the final image
This is experimental, let's see if it works...
2024-04-05 13:59:34 +03:00
Pēteris Caune
198c80305e
Remove unused files from docker image, reducing its size slightly 2024-04-05 13:38:42 +03:00
Pēteris Caune
db31cacc86
Fix syntax 2024-02-16 12:37:59 +02:00
Pēteris Caune
ec0791b4ee
Update the WhatsApp integration to use Twilio Content Templates 2024-02-16 12:37:11 +02:00
Pēteris Caune
33284bd93f
Fix MariaDB version check
Naively comparing with string "10.7" does not quite work for
versions 10.10 and 10.11 :-)
2024-02-09 14:01:48 +02:00
Pēteris Caune
42f88f4fb0
Add S3_SECURE setting
It controls whether to use secure (TLS) connection to S3 or not.
2024-01-10 12:19:45 +02:00
Pēteris Caune
cb1b216125
Increase uWSGI buffer size to allow requests with large cookies
Fixes: 
2023-12-15 13:43:27 +02:00
Pēteris Caune
1026c0a1f2
Update Dockerfile to use Python 3.12 2023-12-15 11:15:42 +02:00
Pēteris Caune
3b8d473980
Add --skip-checks to "manage.py smtpd" to avoid multiple check runs 2023-12-15 11:15:31 +02:00
Pēteris Caune
65b9dd371f
Add system check to validate settings.SITE_ROOT
Fixes: 
2023-12-15 11:04:21 +02:00
Pēteris Caune
c22c8a0a76
Improve markdown markup 2023-10-18 09:17:31 +03:00
Pēteris Caune
e4f233ba30
Sync templates/docs/self_hosted_docker.md and docker/README.md 2023-10-18 09:00:38 +03:00
Pēteris Caune
c123e4d3a9
Add note about SMTPD_PORT in docs
cc: 
2023-10-18 08:39:22 +03:00
Pēteris Caune
89aa0a832b
Update uwsgi.ini to allow UWSGI_PROCESSES env var to override it 2023-10-17 10:24:20 +03:00
Git'Fellow
8dbbd5b9d6
Switch to apt-get ()
More suitable and less error prone to use in scripts
2023-09-20 10:02:34 +03:00
Pēteris Caune
a2fdb5dc52
Update CHANGELOG for v2.10 release 2023-07-02 10:07:02 +03:00
Pēteris Caune
a53e79cc49
Add a note about pre-built images in docs/docker 2023-06-27 15:20:53 +03:00
Pēteris Caune
d4060279f1
Fix arm/v7 build 2023-06-15 13:56:04 +03:00
Pēteris Caune
8d41d284e5
Add libxml2 dependency now required by uwsgi 2023-06-15 09:14:44 +03:00
Pēteris Caune
6dbd665c67
Update Dockerfile to use Debian Bookworm as the base 2023-06-15 09:09:17 +03:00
Pēteris Caune
c324787809
Update Dockerfile to prepare a writable location for data volume 2023-06-13 13:52:59 +03:00
Pēteris Caune
292133526f
Update Dockerfile to install rust via rustup
(The rust version in bullseye repositories is now
too old to build cryptography.)
2023-06-05 15:39:13 +03:00
Pēteris Caune
eb7dfe5c63
Add Rocket.Chat integration
cc: 
2023-05-30 12:30:29 +03:00
Pēteris Caune
c17a483be4
Add USE_GZIP_MIDDLEWARE env var which enables GZipMiddleware 2023-05-11 17:31:14 +03:00