Add iPerf3 container. Add container name for easier management

This commit is contained in:
RealBrandon 2024-04-19 20:11:13 +01:00
parent 0443b4883d
commit 87b343749d

View file

@ -3,6 +3,7 @@ version: "3.8"
services: services:
nginx: nginx:
image: hybula/lookingglass-nginx:1 image: hybula/lookingglass-nginx:1
container_name: lg-nginx
build: build:
context: docker/nginx context: docker/nginx
dockerfile: Dockerfile dockerfile: Dockerfile
@ -12,6 +13,7 @@ services:
php-fpm: php-fpm:
image: hybula/lookingglass-php:1 image: hybula/lookingglass-php:1
container_name: lg-php
build: build:
context: . context: .
dockerfile: docker/php-fpm/Dockerfile dockerfile: docker/php-fpm/Dockerfile
@ -33,3 +35,13 @@ services:
# ENABLE_CUSTOM_BLOCK: 'true' # ENABLE_CUSTOM_BLOCK: 'true'
# Uncomment if you require visitors to accept the Terms of Use; the value should be a link to the terms. # Uncomment if you require visitors to accept the Terms of Use; the value should be a link to the terms.
# LG_TERMS: http://localhost/ # 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