Fix: Add missing port 3000 mapping to BROWSER=0 example

The docker run example for disabling the browser was missing the -p 3000:3000
port mapping, which should be included for reference even when BROWSER=0.

Co-authored-by: Daniel Chalef <danielchalef@users.noreply.github.com>
This commit is contained in:
claude[bot] 2025-11-05 16:15:14 +00:00 committed by Daniel Chalef
parent 4d886fb929
commit f12bfd6a5f

View file

@ -132,6 +132,7 @@ To disable the FalkorDB Browser web UI (port 3000), set the `BROWSER` environmen
# Using docker run
docker run -d \
-p 6379:6379 \
-p 3000:3000 \
-p 8000:8000 \
-e BROWSER=0 \
-e OPENAI_API_KEY=your_key \