From 6a55b68acc9d547563ed824849238be266e42a55 Mon Sep 17 00:00:00 2001 From: Jannis Mattheis Date: Sat, 12 Aug 2023 16:45:30 +0200 Subject: [PATCH] Fix docs typo in port range Fixes #164 --- docs/install.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/install.md b/docs/install.md index bddc58d..28df2d9 100644 --- a/docs/install.md +++ b/docs/install.md @@ -47,7 +47,7 @@ $ docker run -it \ -e SCREEGO_TURN_PORT_RANGE=50000:50200 \ -p 5050:5050 \ -p 3478:3478 \ - -p 50000-50100:50000-50200/udp \ + -p 50000-50200:50000-50200/udp \ screego/server:GITHUB_VERSION ``` @@ -61,7 +61,7 @@ services: ports: - 5050:5050 - 3478:3478 - - 50000-50100:50000-50200/udp + - 50000-50200:50000-50200/udp environment: SCREEGO_EXTERNAL_IP: "192.168.178.2" SCREEGO_TURN_PORT_RANGE: "50000:50200"