Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 562 Bytes

README.md

File metadata and controls

23 lines (17 loc) · 562 Bytes

#Dockerized iperf3 server

This code corresponds to codyhanson/iperf3 on the docker hub.

To run as server with default ports:

$ docker run --rm -p 5201:5201 -p 5201:5201/udp  codyhanson/iperf3

To run as a client:

$ docker run --rm codyhanson/iperf3 -c <iperf3 server ip> [other iperf options]

To build from scratch:

$ git clone [email protected]:codyhanson/docker-iperf3
$ cd docker-iperf3
$ docker build -t yourDockerUsername/docker-iperf3 .

Tested with Docker 1.4.1