iperf3 icon indicating copy to clipboard operation
iperf3 copied to clipboard

How can I run this docker image through docker-compose?

Open tablenchair opened this issue 4 years ago • 1 comments

I would like to run this image alongwith others in docker-compose. How can I configure it to run in server-mode in the docker-compose file ? Also, is there anyway to bind it to an interface & specify the pid location, ie, options -B & -I respectively in https://iperf.fr/iperf-doc.php#3doc

tablenchair avatar Aug 26 '21 03:08 tablenchair

Here's what my docker-compose.yml looks like:

version: "3"
services:
  iperf3:
    image: networkstatic/iperf3:latest
    restart: always
    ports:
      - 5201:5201
    command: -s

BBaoVanC avatar Aug 27 '21 23:08 BBaoVanC