docker-compose.playwright.yaml 346 B

12345678910
  1. services:
  2. playwright:
  3. image: mcr.microsoft.com/playwright:v1.49.1-noble # Version must match requirements.txt
  4. container_name: playwright
  5. command: npx -y playwright@1.49.1 run-server --port 3000 --host 0.0.0.0
  6. open-webui:
  7. environment:
  8. - 'RAG_WEB_LOADER_ENGINE=playwright'
  9. - 'PLAYWRIGHT_WS_URI=ws://playwright:3000'