From b498e9881c5bcaf7ddad6a4d8d1e540e24d316f5 Mon Sep 17 00:00:00 2001 From: chand1012 Date: Fri, 10 May 2024 17:23:22 -0400 Subject: [PATCH] chore: Update docker-compose.yaml network configuration --- docker-compose.yaml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/docker-compose.yaml b/docker-compose.yaml index 2daabec..12a8219 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -4,14 +4,14 @@ services: redis: image: redis:alpine networks: - - firecrawl + - default playwright-service: build: apps/playwright-service environment: - PORT=3000 networks: - - firecrawl + - default api: build: apps/api @@ -42,7 +42,7 @@ services: - "3002:3002" command: [ "pnpm", "run", "start:production" ] networks: - - firecrawl + - default worker: build: apps/api @@ -71,8 +71,7 @@ services: - playwright-service - api networks: - - firecrawl + - default networks: default: - name: firecrawl