Skip to content

Commit 60dbb63

Browse files
Bot Updating Documentation
1 parent 115dbcf commit 60dbb63

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

docs/images/docker-healthchecks.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ services:
6262
- PUID=1000
6363
- PGID=1000
6464
- TZ=Etc/UTC
65+
- SECRET_KEY=
6566
- SITE_ROOT=
6667
- SITE_NAME=
6768
- SUPERUSER_EMAIL=
@@ -79,7 +80,6 @@ services:
7980
- INTEGRATIONS_ALLOW_PRIVATE_IPS= #optional
8081
- PING_EMAIL_DOMAIN= #optional
8182
- RP_ID= #optional
82-
- SECRET_KEY= #optional
8383
- SITE_LOGO_URL= #optional
8484
volumes:
8585
- /path/to/healthchecks/config:/config
@@ -97,6 +97,7 @@ docker run -d \
9797
-e PUID=1000 \
9898
-e PGID=1000 \
9999
-e TZ=Etc/UTC \
100+
-e SECRET_KEY= \
100101
-e SITE_ROOT= \
101102
-e SITE_NAME= \
102103
-e SUPERUSER_EMAIL= \
@@ -114,7 +115,6 @@ docker run -d \
114115
-e INTEGRATIONS_ALLOW_PRIVATE_IPS= `#optional` \
115116
-e PING_EMAIL_DOMAIN= `#optional` \
116117
-e RP_ID= `#optional` \
117-
-e SECRET_KEY= `#optional` \
118118
-e SITE_LOGO_URL= `#optional` \
119119
-p 8000:8000 \
120120
-p 2525:2525 `#optional` \
@@ -141,6 +141,7 @@ Containers are configured using parameters passed at runtime (such as those abov
141141
| `PUID=1000` | for UserID - see below for explanation |
142142
| `PGID=1000` | for GroupID - see below for explanation |
143143
| `TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
144+
| `SECRET_KEY=` | A secret key used for cryptographic signing. Will generate a random value if one is not supplied and save it to `/config/local_settings.py`. |
144145
| `SITE_ROOT=` | The site's top-level URL and the port it listens to if different than 80 or 443 (e.g., https://healthchecks.example.com:8000). |
145146
| `SITE_NAME=` | The site's name (e.g., "Example Corp HealthChecks"). |
146147
| `SUPERUSER_EMAIL=` | Superuser email. |
@@ -158,7 +159,6 @@ Containers are configured using parameters passed at runtime (such as those abov
158159
| `INTEGRATIONS_ALLOW_PRIVATE_IPS=` | Defaults to False. Set to True to allow integrations to connect to private IP addresses. |
159160
| `PING_EMAIL_DOMAIN=` | The domain to use for generating ping email addresses. Defaults to `localhost`. |
160161
| `RP_ID=` | If using webauthn for 2FA set this to match your Healthchecks domain. Webauthn will only work over https. |
161-
| `SECRET_KEY=` | A secret key used for cryptographic signing. Will generate a random value if one is not supplied and save it to `/config/local_settings.py`. |
162162
| `SITE_LOGO_URL=` | Full URL to custom site logo. |
163163

164164
### Volume Mappings (`-v`)
@@ -374,13 +374,14 @@ To help with development, we generate this dependency graph.
374374
svc-healthchecks -> legacy-services
375375
}
376376
Base Images: {
377-
"baseimage-alpine:3.22"
377+
"baseimage-alpine:3.23"
378378
}
379379
"healthchecks:latest" <- Base Images
380380
```
381381

382382
## Versions
383383

384+
* **28.12.25:** - Rebase to Alpine 3.23.
384385
* **05.07.25:** - Rebase to Alpine 3.22.
385386
* **20.12.24:** - Rebase to Alpine 3.21.
386387
* **31.08.24:** - Enable IPv6 on uwsgi.

0 commit comments

Comments
 (0)