Skip to content

Commit 5efd952

Browse files
alexjustesengitbook-bot
authored andcommitted
GITBOOK-61: change request with no subject merged in GitBook
1 parent 6e3faf8 commit 5efd952

File tree

4 files changed

+45
-18
lines changed

4 files changed

+45
-18
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description: >-
77
# Introduction
88

99
{% hint style="info" %}
10-
These docs are up-to-date for version: `v0.14.0`
10+
These docs are up-to-date for version: `v0.15.4`
1111
{% endhint %}
1212

1313
<figure><img src=".gitbook/assets/dashboard_screenshot.jpg" alt=""><figcaption></figcaption></figure>

SUMMARY.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* [Introduction](README.md)
44
* [Features](features.md)
55
* [Frequently Asked Questions](faqs.md)
6+
* [Changelog](changelog.md)
67

78
## 🚀 Getting Started
89

changelog.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
description: Important milestones in the project.
3+
---
4+
5+
# Changelog
6+
7+
{% hint style="info" %}
8+
A complete history of all changes can be found on GitHub in the [releases](https://github.com/alexjustesen/speedtest-tracker/releases).
9+
{% endhint %}
10+
11+
### 2024
12+
13+
#### Feb. 9th, 2024 - LinuxServer.io Docker image now available!
14+
15+
The fantastic gents over at [LinuxServer.io](https://www.linuxserver.io/) have build an [image](https://fleet.linuxserver.io/image?name=linuxserver/speedtest-tracker) that is 3-4x faster and 1/2 the build size of the current image! For more details check out the published [issue](https://github.com/alexjustesen/speedtest-tracker/issues/1117) on GitHub.
16+
17+
***
18+
19+
### 2023
20+
21+
🤷‍♂️ I did a lot, just haven't filled this in yet.
22+
23+
***
24+
25+
### 2022
26+
27+
#### Sep. 13th, 2022 - First release!
28+
29+
Where it all [started](https://github.com/alexjustesen/speedtest-tracker/releases/tag/v0.1.0-alpha.1).

getting-started/installation/installation.md

Lines changed: 14 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ services:
1818
speedtest-tracker:
1919
container_name: speedtest-tracker
2020
ports:
21-
- '8080:80'
22-
- '8443:443'
21+
- 8080:80
22+
- 8443:443
2323
environment:
2424
- PUID=1000
2525
- PGID=1000
@@ -30,9 +30,9 @@ services:
3030
- DB_USERNAME=speedy
3131
- DB_PASSWORD=password
3232
volumes:
33-
- speedtest-app:/config
34-
- '/path/to/directory/web:/etc/ssl/web'
35-
image: 'ghcr.io/alexjustesen/speedtest-tracker:latest'
33+
- /path/to/data:/config
34+
- /path/to/directory/web:/etc/ssl/web
35+
image: lscr.io/linuxserver/speedtest-tracker:latest
3636
restart: unless-stopped
3737
depends_on:
3838
- db
@@ -47,7 +47,6 @@ services:
4747
volumes:
4848
- speedtest-db:/var/lib/mysql
4949
volumes:
50-
speedtest-app:
5150
speedtest-db:
5251
```
5352
{% endtab %}
@@ -59,8 +58,8 @@ services:
5958
speedtest-tracker:
6059
container_name: speedtest-tracker
6160
ports:
62-
- '8080:80'
63-
- '8443:443'
61+
- 8080:80
62+
- 8443:443
6463
environment:
6564
- PUID=1000
6665
- PGID=1000
@@ -71,9 +70,9 @@ services:
7170
- DB_USERNAME=speedy
7271
- DB_PASSWORD=password
7372
volumes:
74-
- speedtest-app:/config
75-
- '/path/to/directory/web:/etc/ssl/web'
76-
image: 'ghcr.io/alexjustesen/speedtest-tracker:latest'
73+
- /path/to/data:/config
74+
- /path/to/directory/web:/etc/ssl/web
75+
image: lscr.io/linuxserver/speedtest-tracker:latest
7776
restart: unless-stopped
7877
depends_on:
7978
- db
@@ -87,7 +86,6 @@ services:
8786
volumes:
8887
- speedtest-db:/var/lib/postgresql/data
8988
volumes:
90-
speedtest-app:
9189
speedtest-db:
9290
```
9391
{% endtab %}
@@ -115,9 +113,9 @@ docker run -d --name speedtest-tracker --restart unless-stopped \
115113
-e DB_DATABASE=speedtest_tracker \
116114
-e DB_USERNAME= \
117115
-e DB_PASSWORD= \
118-
-v /path/to/directory:/config \
116+
-v /path/to/data:/config \
119117
-v /path/to/directory/web:/etc/ssl/web \
120-
ghcr.io/alexjustesen/speedtest-tracker:latest
118+
lscr.io/linuxserver/speedtest-tracker:latest
121119
```
122120
{% endtab %}
123121

@@ -134,10 +132,9 @@ docker run -d --name speedtest-tracker --restart unless-stopped \
134132
-e DB_DATABASE=speedtest_tracker \
135133
-e DB_USERNAME= \
136134
-e DB_PASSWORD= \
137-
-v /path/to/directory:/config \
135+
-v /path/to/data:/config \
138136
-v /path/to/directory/web:/etc/ssl/web \
139-
ghcr.io/alexjustesen/speedtest-tracker:latest
137+
lscr.io/linuxserver/speedtest-tracker:latest
140138
```
141139
{% endtab %}
142140
{% endtabs %}
143-

0 commit comments

Comments
 (0)