Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 477 Bytes

README.md

File metadata and controls

25 lines (20 loc) · 477 Bytes

iperf3

Dockerimage for iperf3 in ServerMode ipv4 and ipv6

Installation via command line

Install the docker container via command line:

docker pull haferm/iperf3
docker run --name iperf3 -p 5201:5201 haferm/iperf3

Installation via docker compose

Install the docker container via docker compose:

version: "2.1"
services:
  iperf3:
    image: haferm/iperf3
    container_name: iperf3
    ports:
      - 5201:5201
    restart: unless-stopped