Simplify Docker user instructions in README

Removed redundant tip about Docker Gateway host settings.
This commit is contained in:
Ryan Machado 2026-02-24 21:02:00 -03:00 committed by GitHub
parent ec6da7a530
commit c7b1d72de9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -174,10 +174,6 @@ vim config/config.json # Set DISCORD_BOT_TOKEN, API keys, etc.
# 3. Build & Start
docker compose --profile gateway up -d
> [!TIP]
> **Docker Users**: By default, the Gateway listens on `127.0.0.1` which is not accessible from the host. If you need to access the health endpoints or expose ports, set `PICOCLAW_GATEWAY_HOST=0.0.0.0` in your environment or update `config.json`.
# 4. Check logs
docker compose logs -f picoclaw-gateway
@ -185,6 +181,9 @@ docker compose logs -f picoclaw-gateway
docker compose --profile gateway down
```
> [!TIP]
> **Docker Users**: By default, the Gateway listens on `127.0.0.1` which is not accessible from the host. If you need to access the health endpoints or expose ports, set `PICOCLAW_GATEWAY_HOST=0.0.0.0` in your environment or update `config.json`.
### Agent Mode (One-shot)
```bash