From a72510f4c059c9f1acf001b5a47c6131e0466952 Mon Sep 17 00:00:00 2001 From: Tobi Okanlawon <44805388+TobiOkanlawon@users.noreply.github.com> Date: Thu, 18 Sep 2025 05:23:22 +0100 Subject: [PATCH] Update README.md Clearly bind the port used by the container the same port on the host computer. Without this, I kept running the command but was not able to use the service. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dc6bf91e..76e5746f 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ There are three ways to install Gentle. 1. Download the [pre-built Mac application](https://github.com/lowerquality/gentle/releases/latest). This package includes a GUI that will start the server and a browser. It only works on Mac OS. -2. Use the [Docker](https://www.docker.com/) image. Just run ```docker run -P lowerquality/gentle```. This works on all platforms supported by Docker. +2. Use the [Docker](https://www.docker.com/) image. Just run ```docker run -P 8765:8765 lowerquality/gentle```. This works on all platforms supported by Docker. 3. Download the source code and run ```./install.sh```. Then run ```python3 serve.py``` to start the server. This works on Mac and Linux.