File size: 343 Bytes
94e6489 |
1 2 3 4 5 6 7 8 9 10 11 |
services:
playwright:
image: mcr.microsoft.com/playwright:v1.49.1-noble # Version must match requirements.txt
container_name: playwright
command: npx -y [email protected] run-server --port 3000 --host 0.0.0.0
open-webui:
environment:
- 'WEB_LOADER_ENGINE=playwright'
- 'PLAYWRIGHT_WS_URL=ws://playwright:3000'
|