From 87b343749d05a3c56e7dedb078e631ce03b2edee Mon Sep 17 00:00:00 2001 From: RealBrandon Date: Fri, 19 Apr 2024 20:11:13 +0100 Subject: [PATCH] Add iPerf3 container. Add container name for easier management --- docker-compose.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index cb5da1a..bdde356 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -3,6 +3,7 @@ version: "3.8" services: nginx: image: hybula/lookingglass-nginx:1 + container_name: lg-nginx build: context: docker/nginx dockerfile: Dockerfile @@ -12,6 +13,7 @@ services: php-fpm: image: hybula/lookingglass-php:1 + container_name: lg-php build: context: . dockerfile: docker/php-fpm/Dockerfile @@ -33,3 +35,13 @@ services: # ENABLE_CUSTOM_BLOCK: 'true' # Uncomment if you require visitors to accept the Terms of Use; the value should be a link to the terms. # LG_TERMS: http://localhost/ + + iperf3: + image: networkstatic/iperf3:latest + container_name: lg-iperf3 + ports: + - "5201:5201" + command: -s + tty: true + stdin_open: true + restart: unless-stopped