mirror of
https://github.com/tiyn/wiki.git
synced 2025-04-04 07:47:45 +02:00
docker-image: added henrywhitaker3/speedtest-tracker
This commit is contained in:
parent
9074ec26d7
commit
1b355f30ee
44
wiki/docker-images/henrywhitaker3_-_speedtest-tracker.md
Normal file
44
wiki/docker-images/henrywhitaker3_-_speedtest-tracker.md
Normal file
@ -0,0 +1,44 @@
|
||||
# henrywhitaker3 - speedtest-tracker
|
||||
|
||||
The official container and documentation was made by [henrywhitaker3](https://hub.docker.com/r/henrywhitaker3/speedtest-tracker).
|
||||
|
||||
## Environment-variables
|
||||
|
||||
Set the following variables with the -e tag.
|
||||
|
||||
| Name | Usage | Default |
|
||||
| ----------------- | ----------------------------- | ------- |
|
||||
| `OOKLA_EULA_GDPR` | set to `true` to accept EULA | |
|
||||
| `AUTH` | set to `true` to enable login | |
|
||||
|
||||
## Volumes
|
||||
|
||||
Set the following volumes with the -v tag.
|
||||
|
||||
| Volume-Name | Container mount | Description |
|
||||
| ----------- | --------------- | ------------------ |
|
||||
| `speedtest` | `/config` | storage for config |
|
||||
|
||||
## Ports
|
||||
|
||||
Set the following ports with the -p tag.
|
||||
|
||||
| Container Port | Recommended outside port | Protocol | Description |
|
||||
| -------------- | ------------------------ | -------- | ------------------ |
|
||||
| `80` | `8765` | TCP | WebUI |
|
||||
|
||||
## Rebuild
|
||||
|
||||
```shell
|
||||
#!/bin/sh
|
||||
docker stop speedtest
|
||||
docker rm speedtest
|
||||
docker pull henrywhitaker3/speedtest-tracker:latest
|
||||
docker run --name speedtest \
|
||||
--restart unless-stopped \
|
||||
-p 8765:80 \
|
||||
-v speedtest:/config \
|
||||
-e OOKLA_EULA_GDPR=true \
|
||||
-e AUTH=true \
|
||||
-d henrywhitaker3/speedtest-tracker:latest
|
||||
```
|
Loading…
x
Reference in New Issue
Block a user