Skip to content

Commit 928a55a

Browse files
alexjustesengitbook-bot
authored andcommitted
GitBook: [alexjustesen#21] No subject
1 parent 92a80e1 commit 928a55a

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description: >-
99

1010

1111
{% hint style="info" %}
12-
These docs are up-to-date for version: `0.4.0`
12+
These docs are up-to-date for version: `0.5.0`
1313
{% endhint %}
1414

1515
### Introduction

getting-started/installation.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,13 @@
99
| PUID | 1000 | Update with your UID by running `id username` |
1010
| PGID | 1000 | Update with your GID by running `id username` |
1111

12+
### Port Mapping
13+
14+
| Protocol | Internal port |
15+
| -------- | ------------- |
16+
| HTTP | 80 |
17+
| HTTPS | 443 |
18+
1219
### Install with Docker
1320

1421
{% hint style="info" %}
@@ -19,6 +26,7 @@ MariaDB/MySQL and PostgreSQL instructions assumes you have a database instance t
1926
{% tab title="Docker (Sqlite)" %}
2027
```bash
2128
docker run -d --name speedtest-tracker \
29+
-p 8080:80 \
2230
-p 8443:443 \
2331
-e PUID=1000 \
2432
-e PGID=1000 \
@@ -30,6 +38,7 @@ docker run -d --name speedtest-tracker \
3038
{% tab title="Docker (MariaDB/MySQL)" %}
3139
```bash
3240
docker run -d --name speedtest-tracker \
41+
-p 8080:80 \
3342
-p 8443:443 \
3443
-e PUID=1000 \
3544
-e PGID=1000 \
@@ -47,6 +56,7 @@ docker run -d --name speedtest-tracker \
4756
{% tab title="Docker (PostgreSQL)" %}
4857
```bash
4958
docker run -d --name speedtest-tracker \
59+
-p 8080:80 \
5060
-p 8443:443 \
5161
-e PUID=1000 \
5262
-e PGID=1000 \
@@ -72,6 +82,7 @@ services:
7282
speedtest-tracker:
7383
container_name: speedtest-tracker
7484
ports:
85+
- '8080:80'
7586
- '8443:443'
7687
environment:
7788
- PUID=1000
@@ -89,6 +100,7 @@ services:
89100
speedtest-tracker:
90101
container_name: speedtest-tracker
91102
ports:
103+
- '8080:80'
92104
- '8443:443'
93105
environment:
94106
- PUID=1000
@@ -126,6 +138,7 @@ services:
126138
speedtest-tracker:
127139
container_name: speedtest-tracker
128140
ports:
141+
- '8080:80'
129142
- '8443:443'
130143
environment:
131144
- PUID=1000

0 commit comments

Comments
 (0)