From 0eccb531f47d5711657e9fb7b2ad0c52c1248897 Mon Sep 17 00:00:00 2001 From: sepehr Date: Fri, 15 May 2026 18:59:13 +0200 Subject: [PATCH] fix: frontend missing networks section in docker-compose wordly-network was listed under environment: instead of networks:, so the frontend container couldn't communicate with the backend. Co-Authored-By: Claude Opus 4.7 --- docker-compose.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/docker-compose.yml b/docker-compose.yml index 3f2c1ad..0dce079 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -148,6 +148,7 @@ services: environment: - NEXT_PUBLIC_API_URL=${NEXT_PUBLIC_API_URL:-https://wordly.art} - NEXT_PUBLIC_GOOGLE_CLIENT_ID=${NEXT_PUBLIC_GOOGLE_CLIENT_ID:-} + networks: - wordly-network depends_on: backend: