This containerized Chromium desktop runs on Linux and is accessible through any web browser.
Try using Docker:
docker run --name chromium-live -p 3001:3001 ghcr.io/mcp-getgather/chromium-live
or Podman:
podman run --name chromium-live -p 3001:3001 ghcr.io/mcp-getgather/chromium-live
Then open localhost:3001 in your browser.
To enable remote control of Chromium via the Chrome DevTools Protocol, map port 9222 as well:
podman run --name chromium-live -p 3001:3001 -p 9222:9222 ghcr.io/mcp-getgather/chromium-live
To configure Chromium's proxy connection (via GOST):
podman exec chromium-live bash -c "sudo pkill gost"
podman exec chromium-live bash -c "screen -dmS gost /app/gost -L http://:8080 -F http://username:password@proxy"
To test the CDP connection:
curl http://127.0.0.1:9222/json/list
To build and run locally:
docker build -t chromium-live .
docker run -p 3001:3001 chromium-live
