Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refresh of this Docker Stack #29

Open
wants to merge 18 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# docker-speedtest-grafana

![](https://i.imgur.com/cvfhIDH.png)
![](https://i.imgur.com/z3glk2W.png)

Docker setup consisting out of Grafana incl. a pre-configured dashboard, InfluxDB and a [speedtest.net CLI test](https://www.speedtest.net/apps/cli) runner.

Expand All @@ -10,7 +10,7 @@ Docker setup consisting out of Grafana incl. a pre-configured dashboard, InfluxD
2. Clone this repository:

```shell
git clone https://github.com/frdmn/docker-speedtest-grafana
git clone https://github.com/iamk3/docker-speedtest-grafana
```

3. Create a copy of the sample `.env` file and adjust it at will:
Expand Down
10 changes: 6 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ version: '2'
services:
influxdb:
restart: always
image: influxdb:1.8
image: influxdb:1.8.10
container_name: docker-speedtest-grafana_influxdb
ports:
- "8086:8086"
volumes:
Expand All @@ -15,7 +16,8 @@ services:

grafana:
restart: always
image: grafana/grafana:6.7.2
image: grafana/grafana:8.2.6
container_name: docker-speedtest-grafana_grafana
volumes:
- "./docker/grafana/provisioning:/etc/grafana/provisioning"
ports:
Expand All @@ -29,8 +31,8 @@ services:

speedtest:
restart: always
image: frdmn/speedtest-grafana:latest
container_name: speedtest
image: iamk3/docker-speedtest-grafana:latest
container_name: docker-speedtest-grafana_speedtest
environment:
- "SPEEDTEST_INTERVAL=${SPEEDTEST_SPEEDTEST_INTERVAL}"
- "SPEEDTEST_HOST=${SPEEDTEST_HOST}"
Expand Down
Loading