docs(README): Update docker command
All checks were successful
/ pre-commit (push) Successful in 2m27s

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 <julien@riou.xyz>
This commit is contained in:
Julien Riou 2025-08-28 10:09:35 +02:00
parent 8edaebfad6
commit 9d9a0b842e
Signed by: jriou
GPG key ID: 9A099EDA51316854

View file

@ -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).