docs: add --host 0.0.0.0 to Docker service example (#1415)

This commit is contained in:
Luca Moretti
2026-02-22 01:06:51 +02:00
committed by GitHub
parent 066e54b6ea
commit c60d7bd7a6

View File

@@ -731,7 +731,7 @@ docker run -d -i --rm --init --pull=always \
--name playwright \
-p 8931:8931 \
mcr.microsoft.com/playwright/mcp \
cli.js --headless --browser chromium --no-sandbox --port 8931
cli.js --headless --browser chromium --no-sandbox --port 8931 --host 0.0.0.0
```
The server will listen on host port **8931** and can be reached by any MCP client.