Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 27 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,44 @@ Speedtest Tracker is containerized so you can run it anywhere you run your Docke

### Quick Start

#### Docker

```bash
docker run -d --name speedtest-tracker --restart unless-stopped \
-p 8080:80 \
-e PUID=1000 \
-e PGID=1000 \
-e APP_KEY= # How to generate an app key: https://speedtest-tracker.dev/
-e APP_URL=http://localhost
-e APP_KEY= \ # How to generate an app key: https://speedtest-tracker.dev/
-e APP_URL=http://localhost \
-e DB_CONNECTION=sqlite \
-v ${PWD}:/config \
lscr.io/linuxserver/speedtest-tracker:latest
```

#### Docker Compose

# For more environment configuration see the docs: https://docs.speedtest-tracker.dev/getting-started/environment-variables
```bash
services:
speedtest-tracker:
container_name: speedtest-tracker
ports:
- 8080:80
- 8443:443
environment:
- PUID=1000
- PGID=1000
- APP_KEY= # How to generate an app key: https://speedtest-tracker.dev/
- APP_URL=http://localhost
- DB_CONNECTION=sqlite
volumes:
- /path/to/data:/config
- /path/to-custom-ssl-keys:/config/keys
image: lscr.io/linuxserver/speedtest-tracker:latest
restart: unless-stopped
```

For more environment configuration see the docs: https://docs.speedtest-tracker.dev/getting-started/environment-variables

### FAQs and Features

[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).
Expand Down
4 changes: 2 additions & 2 deletions config/speedtest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

return [

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

'build_version' => 'v0.20.4',
'build_version' => 'v0.20.5',

/**
* General settings.
Expand Down
Loading