Skip to content

Commit d56dbcc

Browse files
svenvg93gitbook-bot
authored andcommitted
GitBook: No commit message
1 parent b459888 commit d56dbcc

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

getting-started/installation/using-docker-compose.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ You will need to get your user's `PUID` and `PGID`, you can do this by running `
4949
environment:
5050
- PUID=
5151
- PGID=
52-
- APP_KEY # Required
53-
- <a data-footnote-ref href="#user-content-fn-1">APP_URL</a>= # Required
52+
- <a data-footnote-ref href="#user-content-fn-1">APP_KEY</a> # Required
53+
- <a data-footnote-ref href="#user-content-fn-2">APP_URL</a>= # Required
5454
- DB_CONNECTION=sqlite
5555
volumes:
5656
- /path/to/data:/config
@@ -230,4 +230,6 @@ During the start the container there is a default username and password created.
230230
{% endstep %}
231231
{% endstepper %}
232232

233-
[^1]: The URL where you'll access the app (e.g., `http://localhost:8080`)
233+
[^1]: Generate with: `echo -n 'base64:'; openssl rand -base64 32`
234+
235+
[^2]: The URL where you'll access the app (e.g., `http://localhost:8080`)

getting-started/installation/using-docker.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,18 +38,18 @@ You will need to get your user's `PUID` and `PGID`, you can do this by running `
3838

3939
{% tabs %}
4040
{% tab title="SQLite" %}
41-
```docker
42-
docker run -d --name speedtest-tracker --restart unless-stopped \
41+
<pre class="language-docker"><code class="lang-docker">docker run -d --name speedtest-tracker --restart unless-stopped \
4342
-p 8080:80 \
4443
-p 8443:443 \
4544
-e PUID= \
4645
-e PGID= \
47-
-e APP_KEY= \
46+
-e <a data-footnote-ref href="#user-content-fn-1">APP_KEY</a>= \
47+
-e <a data-footnote-ref href="#user-content-fn-2">APP_URL</a>= \
4848
-e DB_CONNECTION=sqlite \
4949
-v /path/to/data:/config \
5050
-v /path/to-custom-ssl-keys:/config/keys \
5151
lscr.io/linuxserver/speedtest-tracker:latest
52-
```
52+
</code></pre>
5353
{% endtab %}
5454

5555
{% tab title="MariaDB" %}
@@ -146,3 +146,7 @@ You can now start the container accordingly the platform you are on.
146146
During the start the container there is a default username and password created. Use the [default login](../../security/authentication.md#default-user-account) credentials to login to the application. You can [change the default user](../../security/authentication.md#change-account-details) after logging in.
147147
{% endstep %}
148148
{% endstepper %}
149+
150+
[^1]: Generate with: `echo -n 'base64:'; openssl rand -base64 32`
151+
152+
[^2]: The URL where you'll access the app (e.g., `http://localhost:8080`)

0 commit comments

Comments
 (0)