Add Skyvern integration and browser executor enhancements
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -25,6 +25,8 @@ services:
|
||||
- MEMORY_SERVICE_TOKEN
|
||||
- PORTAL_URL
|
||||
- BOT_API_KEY
|
||||
- SKYVERN_BASE_URL=http://skyvern:8000
|
||||
- SKYVERN_API_KEY
|
||||
volumes:
|
||||
- bot-data:/data
|
||||
depends_on:
|
||||
@@ -73,6 +75,45 @@ services:
|
||||
timeout: 5s
|
||||
retries: 3
|
||||
|
||||
skyvern:
|
||||
image: ghcr.io/skyvern-ai/skyvern:latest
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
DATABASE_STRING: postgresql://skyvern:${SKYVERN_DB_PASSWORD:-skyvern}@skyvern-db:5432/skyvern
|
||||
OPENAI_API_KEY: placeholder
|
||||
OPENAI_API_BASE: ${LITELLM_BASE_URL}
|
||||
LLM_KEY: OPENAI_GPT4O
|
||||
SECONDARY_LLM_KEY: OPENAI_GPT4O_MINI
|
||||
BROWSER_TYPE: chromium-headless
|
||||
ENV: local
|
||||
PORT: "8000"
|
||||
ALLOWED_ORIGINS: '["http://localhost:8000"]'
|
||||
depends_on:
|
||||
skyvern-db:
|
||||
condition: service_healthy
|
||||
healthcheck:
|
||||
test: ["CMD", "curl", "-f", "http://127.0.0.1:8000/api/v1/health"]
|
||||
interval: 30s
|
||||
timeout: 10s
|
||||
retries: 3
|
||||
start_period: 60s
|
||||
|
||||
skyvern-db:
|
||||
image: postgres:17
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
POSTGRES_USER: skyvern
|
||||
POSTGRES_PASSWORD: ${SKYVERN_DB_PASSWORD:-skyvern}
|
||||
POSTGRES_DB: skyvern
|
||||
volumes:
|
||||
- skyvern-pgdata:/var/lib/postgresql/data
|
||||
healthcheck:
|
||||
test: ["CMD-SHELL", "pg_isready -U skyvern -d skyvern"]
|
||||
interval: 5s
|
||||
timeout: 3s
|
||||
retries: 5
|
||||
|
||||
volumes:
|
||||
bot-data:
|
||||
memory-pgdata:
|
||||
skyvern-pgdata:
|
||||
|
||||
Reference in New Issue
Block a user