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:
10
Local Homelab/ai-browser/compose/compose.yml
Normal file
10
Local Homelab/ai-browser/compose/compose.yml
Normal 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"
|
||||||
Reference in New Issue
Block a user