Skip to content

Commit ea9fc1a

Browse files
authored
Merge pull request alexjustesen#19 from mmomjian/main
Update SSL keys location for LSIO Docker image
2 parents 2a96017 + 4d52049 commit ea9fc1a

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

getting-started/installation/installation.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ description: >-
1010

1111
Setting up your environment with Docker Compose is the recommended infrastructure pattern as it'll setup the application and a database for you. SQLite is fine for most installs but we also provide instructions for setting up MariaDB, MySQL and Postgres should you prefer those database drivers.
1212

13+
If you would like to provide your own SSL keys, they must be named `cert.crt` (full chain) and `cert.key` (private key), and mounted in the container folder `/config/keys`.
14+
1315
{% tabs %}
1416
{% tab title="SQLite" %}
1517
```yaml
@@ -26,7 +28,7 @@ services:
2628
- DB_CONNECTION=sqlite
2729
volumes:
2830
- /path/to/data:/config
29-
- /path/to/directory/web:/etc/ssl/web
31+
- /path/to-custom-ssl-keys:/config/keys
3032
image: lscr.io/linuxserver/speedtest-tracker:latest
3133
restart: unless-stopped
3234
```
@@ -52,7 +54,7 @@ services:
5254
- DB_PASSWORD=password
5355
volumes:
5456
- /path/to/data:/config
55-
- /path/to/directory/web:/etc/ssl/web
57+
- /path/to-custom-ssl-keys:/config/keys
5658
image: lscr.io/linuxserver/speedtest-tracker:latest
5759
restart: unless-stopped
5860
depends_on:
@@ -92,7 +94,7 @@ services:
9294
- DB_PASSWORD=password
9395
volumes:
9496
- /path/to/data:/config
95-
- /path/to/directory/web:/etc/ssl/web
97+
- /path/to-custom-ssl-keys:/config/keys
9698
image: lscr.io/linuxserver/speedtest-tracker:latest
9799
restart: unless-stopped
98100
depends_on:
@@ -130,7 +132,7 @@ docker run -d --name speedtest-tracker --restart unless-stopped \
130132
-e PGID=1000 \
131133
-e DB_CONNECTION=sqlite \
132134
-v /path/to/data:/config \
133-
-v /path/to/directory/web:/etc/ssl/web \
135+
-v /path/to-custom-ssl-keys:/config/keys \
134136
lscr.io/linuxserver/speedtest-tracker:latest
135137
```
136138
{% endtab %}
@@ -149,7 +151,7 @@ docker run -d --name speedtest-tracker --restart unless-stopped \
149151
-e DB_USERNAME= \
150152
-e DB_PASSWORD= \
151153
-v /path/to/data:/config \
152-
-v /path/to/directory/web:/etc/ssl/web \
154+
-v /path/to-custom-ssl-keys:/config/keys \
153155
lscr.io/linuxserver/speedtest-tracker:latest
154156
```
155157
{% endtab %}
@@ -168,7 +170,7 @@ docker run -d --name speedtest-tracker --restart unless-stopped \
168170
-e DB_USERNAME= \
169171
-e DB_PASSWORD= \
170172
-v /path/to/data:/config \
171-
-v /path/to/directory/web:/etc/ssl/web \
173+
-v /path/to-custom-ssl-keys:/config/keys \
172174
lscr.io/linuxserver/speedtest-tracker:latest
173175
```
174176
{% endtab %}

getting-started/installation/qnap.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ services:
3434
- DB_PASSWORD=password
3535
volumes:
3636
- /path/to-data:/config
37-
- /path/to/directory/web:/etc/ssl/web
37+
- /path/to-custom-ssl-keys:/config/keys
3838
image: lscr.io/linuxserver/speedtest-tracker:latest
3939
networks:
4040
qnet-network:

0 commit comments

Comments
 (0)