https://github.com/ccoley/docker-iperf
Builds the ccoley/iperf Docker image. Mirror of https://git.codingallnight.com/docker/iperf
https://github.com/ccoley/docker-iperf
docker docker-image iperf iperf2 iperf3
Last synced: 13 days ago
JSON representation
Builds the ccoley/iperf Docker image. Mirror of https://git.codingallnight.com/docker/iperf
- Host: GitHub
- URL: https://github.com/ccoley/docker-iperf
- Owner: ccoley
- Created: 2025-05-06T21:56:52.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2026-01-15T04:03:55.000Z (5 months ago)
- Last Synced: 2026-01-15T10:36:08.931Z (5 months ago)
- Topics: docker, docker-image, iperf, iperf2, iperf3
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/ccoley/iperf
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# iPerf Image
This repo builds two Docker images meant for use as an iperf server.
## Tags
There are images available with iPerf 3 or iPerf 2.
- `3.19`, `3` contain iPerf 3
- `2.2`, `2` contain iPerf 2
## Usage
The images default to running in server mode on the default port, which is 5201 for iPerf 3 and 5001 for iPerf 2.
### Server Mode
Running an iPerf 3 server:
```bash
docker run --rm -p 5201:5201 ccoley/iperf:3
```
Running an iPerf 2 server:
```bash
docker run --rm -p 5001:5001 ccoley/iperf:2
```
### Client Mode
Running iPerf 3 in client mode:
```bash
docker run --rm -t ccoley/iperf:3 -c
```
Running iPerf 2 in client mode:
```bash
docker run --rm -t ccoley/iperf:2 -c -i 1
```
[_modeline]: # ( vi: set ts=4 sw=4 et wrap ft=markdown: )