edit docker files, add skill of browser-use in the workdir

This commit is contained in:
Кобылкевич Фёдор 2026-03-26 22:08:01 +03:00
parent 2f74daa8a6
commit 7832c30cc0
12 changed files with 421 additions and 4 deletions

View file

@ -0,0 +1,26 @@
# Chromium GUI Service
This container provides a full Chromium GUI with three interfaces:
- noVNC web UI: `http://localhost:6080/vnc.html`
- VNC: `localhost:5900`
- CDP endpoint: `http://localhost:9223/json/version`
## Run
```bash
docker compose --profile gui up -d chromium-gui
```
## Use with browser-use
Pass the GUI CDP endpoint as HTTP URL (the runner resolves it to a websocket automatically):
```bash
docker compose exec -T hermes-agent python-browser-use \
/root/.hermes/skills/autonomous-ai-agents/browser-use/scripts/run_browser_use.py \
--cdp-url http://chromium-gui:9223 \
--task "Open example.com and return page title" \
--max-steps 5
```