| 1234567891011121314151617181920 |
- version: '3.9'
- services:
- firecrawl-adapter:
- build: .
- ports:
- - '3000:3000'
- environment:
- - PORT=3000
- - BROWSERLESS_URL=http://browserless:3000
- depends_on:
- browserless:
- condition: service_started
- browserless:
- image: ghcr.io/browserless/chromium:v1.65.2-latest
- ports:
- - '3001:3000'
- environment:
- - TOKEN=firecrawl-poc-token
|