From 9d9a0b842e95178e88b689406e0bae594b5a7093 Mon Sep 17 00:00:00 2001 From: Julien Riou Date: Thu, 28 Aug 2025 10:09:35 +0200 Subject: [PATCH] docs(README): Update docker command The listen address is now 0.0.0.0 by default, we can remove `--network host` from the Docker command in the example. Signed-off-by: Julien Riou --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4078d33..c5c6516 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ sudo cp -p bin/* /usr/local/bin/ git clone https://git.riou.xyz/jriou/coller.git cd coller docker build -t coller:latest . -docker run --network host --rm --name collerd -p 8080:8080 coller:latest +docker run --rm --name collerd -p 8080:8080 coller:latest ``` Then go to http://localhost:8080 (website).