Skip to content

DriftingWind/iperf3-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

iPerf3 使用 Alpine 打包的 Docker 映像

给不便于安装和运行二进制文件的系统(例如群晖 DSM)或想通过 Docker 部署服务端后台运行使用

同步推送到 GHCRDocker Hub

sudo docker pull ghcr.io/driftingwind/iperf3:latest

sudo docker pull ghcr.io/driftingwind/iperf3:stable
sudo docker pull ghcr.io/driftingwind/iperf3:edge
  • 服务端参考 docker-compose.yml
services:
  iperf3:
    image: ghcr.io/driftingwind/iperf3
    container_name: iperf3
    restart: unless-stopped
    ports:
      - 5201:5201
      - 5201:5201/udp
    command: -s
  • 服务端参考命令行
sudo docker run --rm -p 5201:5201 -p 5201:5201/udp -it ghcr.io/driftingwind/iperf3 -s 
  • 客户端参考命令行
sudo docker run --rm -it ghcr.io/driftingwind/iperf3 -c <host>

链接

About

A tiny Alpine-based iPerf3 Docker image for network benchmarking.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors