You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/images/docker-healthchecks.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,6 +62,7 @@ services:
62
62
- PUID=1000
63
63
- PGID=1000
64
64
- TZ=Etc/UTC
65
+
- SECRET_KEY=
65
66
- SITE_ROOT=
66
67
- SITE_NAME=
67
68
- SUPERUSER_EMAIL=
@@ -79,7 +80,6 @@ services:
79
80
- INTEGRATIONS_ALLOW_PRIVATE_IPS= #optional
80
81
- PING_EMAIL_DOMAIN= #optional
81
82
- RP_ID= #optional
82
-
- SECRET_KEY= #optional
83
83
- SITE_LOGO_URL= #optional
84
84
volumes:
85
85
- /path/to/healthchecks/config:/config
@@ -97,6 +97,7 @@ docker run -d \
97
97
-e PUID=1000 \
98
98
-e PGID=1000 \
99
99
-e TZ=Etc/UTC \
100
+
-e SECRET_KEY= \
100
101
-e SITE_ROOT= \
101
102
-e SITE_NAME= \
102
103
-e SUPERUSER_EMAIL= \
@@ -114,7 +115,6 @@ docker run -d \
114
115
-e INTEGRATIONS_ALLOW_PRIVATE_IPS= `#optional` \
115
116
-e PING_EMAIL_DOMAIN= `#optional` \
116
117
-e RP_ID= `#optional` \
117
-
-e SECRET_KEY= `#optional` \
118
118
-e SITE_LOGO_URL= `#optional` \
119
119
-p 8000:8000 \
120
120
-p 2525:2525 `#optional` \
@@ -141,6 +141,7 @@ Containers are configured using parameters passed at runtime (such as those abov
141
141
|`PUID=1000`| for UserID - see below for explanation |
142
142
|`PGID=1000`| for GroupID - see below for explanation |
143
143
|`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`. |
144
145
|`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).|
145
146
|`SITE_NAME=`| The site's name (e.g., "Example Corp HealthChecks"). |
146
147
|`SUPERUSER_EMAIL=`| Superuser email. |
@@ -158,7 +159,6 @@ Containers are configured using parameters passed at runtime (such as those abov
158
159
|`INTEGRATIONS_ALLOW_PRIVATE_IPS=`| Defaults to False. Set to True to allow integrations to connect to private IP addresses. |
159
160
|`PING_EMAIL_DOMAIN=`| The domain to use for generating ping email addresses. Defaults to `localhost`. |
160
161
|`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`. |
162
162
|`SITE_LOGO_URL=`| Full URL to custom site logo. |
163
163
164
164
### Volume Mappings (`-v`)
@@ -374,13 +374,14 @@ To help with development, we generate this dependency graph.
0 commit comments