Skip to content

Commit b459888

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

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

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

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,7 @@ 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-
```yaml
42-
services:
41+
<pre class="language-yaml"><code class="lang-yaml">services:
4342
speedtest-tracker:
4443
image: lscr.io/linuxserver/speedtest-tracker:latest
4544
restart: unless-stopped
@@ -50,12 +49,13 @@ services:
5049
environment:
5150
- PUID=
5251
- PGID=
53-
- APP_KEY=
52+
- APP_KEY # Required
53+
- <a data-footnote-ref href="#user-content-fn-1">APP_URL</a>= # Required
5454
- DB_CONNECTION=sqlite
5555
volumes:
5656
- /path/to/data:/config
5757
- /path/to-custom-ssl-keys:/config/keys
58-
```
58+
</code></pre>
5959
{% endtab %}
6060

6161
{% tab title="MariaDB" %}
@@ -70,7 +70,8 @@ services:
7070
environment:
7171
- PUID=
7272
- PGID=
73-
- APP_KEY=
73+
- APP_KEY= # Required
74+
- APP_URL= # Required
7475
- DB_CONNECTION=mariadb
7576
- DB_HOST=db
7677
- DB_PORT=3306
@@ -115,7 +116,8 @@ services:
115116
environment:
116117
- PUID=
117118
- PGID=
118-
- APP_KEY=
119+
- APP_KEY= # Required
120+
- APP_URL= # Required
119121
- DB_CONNECTION=mysql
120122
- DB_HOST=db
121123
- DB_PORT=3306
@@ -160,7 +162,8 @@ services:
160162
environment:
161163
- PUID=
162164
- PGID=
163-
- APP_KEY=
165+
- APP_KEY= # Required
166+
- APP_URL= # Required
164167
- DB_CONNECTION=pgsql
165168
- DB_HOST=db
166169
- DB_PORT=5432
@@ -226,3 +229,5 @@ You can now start the container accordingly the platform you are on.
226229
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.
227230
{% endstep %}
228231
{% endstepper %}
232+
233+
[^1]: The URL where you'll access the app (e.g., `http://localhost:8080`)

0 commit comments

Comments
 (0)