Added iPerf3 to monitor local network connection speeds

This commit is contained in:
2025-08-26 10:35:07 +00:00
parent 382d08cbcb
commit 2280ba017c
2 changed files with 11 additions and 0 deletions

View File

@@ -58,6 +58,7 @@ docker compose up -d
- **FoundryVTT Watcher** (30000) - FoundryVTT player login watcher
- **Glances** - Resource manager
- **Homepage** (7575) - Service dashboard
- **iPerf3 Server** (5201) - LAN Network Speedtest server
- **RustDesk (hbbr)** - Remote desktop relay
- **RustDesk (hbbs)** - Remote desktop signaling
- **Newt** - Notification service

View File

@@ -582,6 +582,16 @@ services:
ports:
- 7575:3000
restart: unless-stopped
iperf:
image: networkstatic/iperf3
container_name: iperf3-server
stdin_open: true # docker run -i
tty: true # docker run -t
command: -s
ports:
- '5201:5201'
restart: unless-stopped
newt:
image: fosrl/newt