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.
10 lines
247 B
YAML
10 lines
247 B
YAML
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" |