0

chore: Add firecrawl network to docker-compose.yaml

This commit is contained in:
chand1012 2024-05-10 17:20:33 -04:00
parent 0245066009
commit 2021a822ff
No known key found for this signature in database
GPG Key ID: CCCFE98EEFB1BDD0

View File

@ -3,11 +3,15 @@ version: '3.9'
services: services:
redis: redis:
image: redis:alpine image: redis:alpine
networks:
- firecrawl
playwright-service: playwright-service:
build: apps/playwright-service build: apps/playwright-service
environment: environment:
- PORT=3000 - PORT=3000
networks:
- firecrawl
api: api:
build: apps/api build: apps/api
@ -37,6 +41,8 @@ services:
ports: ports:
- "3002:3002" - "3002:3002"
command: [ "pnpm", "run", "start:production" ] command: [ "pnpm", "run", "start:production" ]
networks:
- firecrawl
worker: worker:
build: apps/api build: apps/api
@ -64,6 +70,8 @@ services:
- redis - redis
- playwright-service - playwright-service
- api - api
networks:
- firecrawl
networks: networks:
default: default: