Skip to content

Commit a23b5bf

Browse files
authored
add app_url and footnote
1 parent d56dbcc commit a23b5bf

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ You will need to get your user's `PUID` and `PGID`, you can do this by running `
7070
environment:
7171
- PUID=
7272
- PGID=
73-
- APP_KEY= # Required
74-
- APP_URL= # Required
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
7575
- DB_CONNECTION=mariadb
7676
- DB_HOST=db
7777
- DB_PORT=3306
@@ -116,8 +116,8 @@ services:
116116
environment:
117117
- PUID=
118118
- PGID=
119-
- APP_KEY= # Required
120-
- APP_URL= # Required
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
121121
- DB_CONNECTION=mysql
122122
- DB_HOST=db
123123
- DB_PORT=3306
@@ -162,8 +162,8 @@ services:
162162
environment:
163163
- PUID=
164164
- PGID=
165-
- APP_KEY= # Required
166-
- APP_URL= # Required
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
167167
- DB_CONNECTION=pgsql
168168
- DB_HOST=db
169169
- DB_PORT=5432

getting-started/installation/using-docker.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ docker run -d --name speedtest-tracker --restart unless-stopped \
5959
-p 8443:443 \
6060
-e PUID= \
6161
-e PGID= \
62-
-e APP_KEY= \
62+
-e <a data-footnote-ref href="#user-content-fn-1">APP_KEY</a>= \
63+
-e <a data-footnote-ref href="#user-content-fn-2">APP_URL</a>= \
6364
-e DB_CONNECTION=mariadb \
6465
-e DB_HOST= \
6566
-e DB_PORT=3306 \
@@ -79,7 +80,8 @@ docker run -d --name speedtest-tracker --restart unless-stopped \
7980
-p 8443:443 \
8081
-e PUID= \
8182
-e PGID= \
82-
-e APP_KEY= \
83+
-e <a data-footnote-ref href="#user-content-fn-1">APP_KEY</a>= \
84+
-e <a data-footnote-ref href="#user-content-fn-2">APP_URL</a>= \
8385
-e DB_CONNECTION=mysql \
8486
-e DB_HOST= \
8587
-e DB_PORT=3306 \
@@ -99,7 +101,8 @@ docker run -d --name speedtest-tracker --restart unless-stopped \
99101
-p 8443:443 \
100102
-e PUID=1000 \
101103
-e PGID=1000 \
102-
-e APP_KEY=
104+
-e <a data-footnote-ref href="#user-content-fn-1">APP_KEY</a>= \
105+
-e <a data-footnote-ref href="#user-content-fn-2">APP_URL</a>= \
103106
-e DB_CONNECTION=pgsql \
104107
-e DB_HOST= \
105108
-e DB_PORT=5432 \

0 commit comments

Comments
 (0)