Skip to content

Commit b4c119c

Browse files
alexjustesengitbook-bot
authored andcommitted
GitBook: No commit message
1 parent 6db4abd commit b4c119c

File tree

1 file changed

+11
-14
lines changed

1 file changed

+11
-14
lines changed

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

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ 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-
<pre class="language-yaml"><code class="lang-yaml">services:
41+
```yaml
42+
services:
4243
speedtest-tracker:
4344
image: lscr.io/linuxserver/speedtest-tracker:latest
4445
restart: unless-stopped
@@ -49,13 +50,13 @@ You will need to get your user's `PUID` and `PGID`, you can do this by running `
4950
environment:
5051
- PUID=
5152
- PGID=
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
53+
- APP_KEY= # Required
54+
- APP_URL= # Required
5455
- DB_CONNECTION=sqlite
5556
volumes:
5657
- /path/to/data:/config
5758
- /path/to-custom-ssl-keys:/config/keys
58-
</code></pre>
59+
```
5960
{% endtab %}
6061
6162
{% tab title="MariaDB" %}
@@ -70,8 +71,8 @@ You will need to get your user's `PUID` and `PGID`, you can do this by running `
7071
environment:
7172
- PUID=
7273
- PGID=
73-
- <a data-footnote-ref href="#user-content-fn-1">APP_KEY</a> # Required
74-
- <a data-footnote-ref href="#user-content-fn-2">APP_URL</a>= # Required
74+
- APP_KEY= # Required
75+
- APP_URL= # Required
7576
- DB_CONNECTION=mariadb
7677
- DB_HOST=db
7778
- DB_PORT=3306
@@ -116,8 +117,8 @@ services:
116117
environment:
117118
- PUID=
118119
- PGID=
119-
- <a data-footnote-ref href="#user-content-fn-1">APP_KEY</a> # Required
120-
- <a data-footnote-ref href="#user-content-fn-2">APP_URL</a>= # Required
120+
- APP_KEY= # Required
121+
- APP_URL= # Required
121122
- DB_CONNECTION=mysql
122123
- DB_HOST=db
123124
- DB_PORT=3306
@@ -162,8 +163,8 @@ services:
162163
environment:
163164
- PUID=
164165
- PGID=
165-
- <a data-footnote-ref href="#user-content-fn-1">APP_KEY</a> # Required
166-
- <a data-footnote-ref href="#user-content-fn-2">APP_URL</a>= # Required
166+
- APP_KEY= # Required
167+
- APP_URL= # Required
167168
- DB_CONNECTION=pgsql
168169
- DB_HOST=db
169170
- DB_PORT=5432
@@ -229,7 +230,3 @@ You can now start the container accordingly the platform you are on.
229230
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.
230231
{% endstep %}
231232
{% endstepper %}
232-
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`)

0 commit comments

Comments
 (0)