feat(ai-browser): add Docker Compose for browserless chromium

Add a new compose.yml file to deploy a headless Chromium instance using the browserless image. This setup configures the cline-browser service with automatic restarts and the KeepAlive environment variable enabled to support AI-driven browser interactions.
This commit is contained in:
2025-12-21 14:10:39 -05:00
parent f1614d7b01
commit 6b86996d75

View File

@@ -0,0 +1,10 @@
name: cline-browser
services:
cline-browser:
image: ghcr.io/browserless/chromium:latest
container_name: cline-browser
restart: always
ports:
# - "3000:3000" # Pangolin points to this
environment:
- "KeepAlive=true"