Skip to content

Commit 48af9e8

Browse files
committed
cleanup old EMAIL ENV Var
1 parent 119eb1f commit 48af9e8

File tree

3 files changed

+5
-534
lines changed

3 files changed

+5
-534
lines changed

doc_docker.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ services:
3737
#ENABLE_ID_OBFUSCATION: "false"
3838
#REDACT_IP_ADDRESSES: "false"
3939
#PASSWORD:
40-
#EMAIL:
4140
#GDPR_EMAIL: "[email protected]"
4241
#DISABLE_IPINFO: "false"
4342
#IPINFO_APIKEY: "your api key"
@@ -72,8 +71,7 @@ Here's a list of additional environment variables available in this mode:
7271
* DB_USERNAME, DB_PASSWORD - credentials of the user with read and update permissions to the db
7372
* mssql - not supported in docker image yet (feel free to open a PR with that, has to be done in `entrypoint.sh`)
7473
* __`PASSWORD`__: Password to access the stats page. If not set, stats page will not allow accesses.
75-
* __`EMAIL`__: Email address for GDPR requests. Must be specified when telemetry is enabled.
76-
* __`GDPR_EMAIL`__: Email address displayed in the privacy policy for data deletion requests. If not set, the default placeholder text will be shown. This should be set to comply with GDPR requirements when running in production.
74+
* __`GDPR_EMAIL`__: Email address displayed in the privacy policy for data deletion requests. If not set, the default placeholder text will be shown. This should be set to comply with GDPR requirements when running in production. Must be specified when telemetry is enabled.
7775
* __`DISABLE_IPINFO`__: If set to `true`, ISP info and distance will not be fetched from either [ipinfo.io](https://ipinfo.io) or the offline database. Default: value: `false`
7876
* __`IPINFO_APIKEY`__: API key for [ipinfo.io](https://ipinfo.io). Optional, but required if you want to use the full [ipinfo.io](https://ipinfo.io) APIs (required for distance measurement)
7977
* __`DISTANCE`__: When `DISABLE_IPINFO` is set to false, this specifies how the distance from the server is measured. Can be either `km` for kilometers, `mi` for miles, or an empty string to disable distance measurement. Requires an [ipinfo.io](https://ipinfo.io) API key. Default value: `km`

docker/test/docker-compose.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ x-shared:
44
speedtest-service: &speedtest-service
55
environment:
66
- PASSWORD=gimmeTheStats1337
7-
7+
- GDPR_EMAIL[email protected]
88
- ENABLE_ID_OBFUSCATION=true
99
- MODE=standalone
1010
- REDACT_IP_ADDRESSES=true
@@ -32,7 +32,7 @@ services:
3232
- DB_PASSWORD=Not4SecureProduction
3333
- DB_TYPE=postgresql
3434
- DB_USERNAME=librespeed
35-
35+
- GDPR_EMAIL[email protected]
3636
- ENABLE_ID_OBFUSCATION=true
3737
- MODE=standalone
3838
- REDACT_IP_ADDRESSES=true
@@ -73,7 +73,7 @@ services:
7373
- DB_PASSWORD=Not4SecureProduction
7474
- DB_TYPE=mysql
7575
- DB_USERNAME=librespeed
76-
76+
- GDPR_EMAIL[email protected]
7777
- ENABLE_ID_OBFUSCATION=true
7878
- MODE=standalone
7979
- REDACT_IP_ADDRESSES=true
@@ -97,7 +97,7 @@ services:
9797
dockerfile: Dockerfile
9898
environment: &env_vars_sqlite
9999
- PASSWORD=gimmeTheStats1337
100-
100+
- GDPR_EMAIL[email protected]
101101
- ENABLE_ID_OBFUSCATION=true
102102
- MODE=standalone
103103
- REDACT_IP_ADDRESSES=true

0 commit comments

Comments
 (0)