Skip to content

Commit 141f99c

Browse files
authored
Release v0.20.5 (alexjustesen#1517)
1 parent 6af99b5 commit 141f99c

File tree

3 files changed

+254
-55
lines changed

3 files changed

+254
-55
lines changed

README.md

Lines changed: 27 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,20 +18,44 @@ Speedtest Tracker is containerized so you can run it anywhere you run your Docke
1818

1919
### Quick Start
2020

21+
#### Docker
22+
2123
```bash
2224
docker run -d --name speedtest-tracker --restart unless-stopped \
2325
-p 8080:80 \
2426
-e PUID=1000 \
2527
-e PGID=1000 \
26-
-e APP_KEY= # How to generate an app key: https://speedtest-tracker.dev/
27-
-e APP_URL=http://localhost
28+
-e APP_KEY= \ # How to generate an app key: https://speedtest-tracker.dev/
29+
-e APP_URL=http://localhost \
2830
-e DB_CONNECTION=sqlite \
2931
-v ${PWD}:/config \
3032
lscr.io/linuxserver/speedtest-tracker:latest
33+
```
34+
35+
#### Docker Compose
3136

32-
# For more environment configuration see the docs: https://docs.speedtest-tracker.dev/getting-started/environment-variables
37+
```bash
38+
services:
39+
speedtest-tracker:
40+
container_name: speedtest-tracker
41+
ports:
42+
- 8080:80
43+
- 8443:443
44+
environment:
45+
- PUID=1000
46+
- PGID=1000
47+
- APP_KEY= # How to generate an app key: https://speedtest-tracker.dev/
48+
- APP_URL=http://localhost
49+
- DB_CONNECTION=sqlite
50+
volumes:
51+
- /path/to/data:/config
52+
- /path/to-custom-ssl-keys:/config/keys
53+
image: lscr.io/linuxserver/speedtest-tracker:latest
54+
restart: unless-stopped
3355
```
3456

57+
For more environment configuration see the docs: https://docs.speedtest-tracker.dev/getting-started/environment-variables
58+
3559
### FAQs and Features
3660

3761
[FAQs](https://docs.speedtest-tracker.dev/faqs) and a full list of planned and completed [features](https://docs.speedtest-tracker.dev/getting-started/features) can be found in the [documentation](https://docs.speedtest-tracker.dev).

config/speedtest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
return [
66

7-
'build_date' => Carbon::parse('2024-06-09'),
7+
'build_date' => Carbon::parse('2024-06-11'),
88

9-
'build_version' => 'v0.20.4',
9+
'build_version' => 'v0.20.5',
1010

1111
/**
1212
* General settings.

0 commit comments

Comments
 (0)