Skip to main content

Installation Methods

CLI:

 docker run -d -it --rm --name=iperf3-server -p 5201:5201 networkstatic/iperf3 -s

Docker-Compose:

version: '3.3'
services:
    iperf3:
        container_name: iperf3-server
        ports:
            - '5201:5201'
        image: networkstatic/iperf3