From d2d0b2c53cc6164abfb896084cdafc909b964e9d Mon Sep 17 00:00:00 2001 From: sepehr Date: Sun, 10 May 2026 15:24:25 +0200 Subject: [PATCH] fix: expose frontend :3000 and backend :8000 ports Ports were missing, preventing direct access from the host. Required for NPM reverse proxy and local testing. Co-Authored-By: Claude Opus 4.7 --- docker-compose.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index f39558b..d5d2816 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -70,6 +70,8 @@ services: target: production container_name: wordly-backend restart: unless-stopped + ports: + - "8000:8000" env_file: - .env environment: @@ -138,6 +140,8 @@ services: NEXT_PUBLIC_API_URL: "" container_name: wordly-frontend restart: unless-stopped + ports: + - "3000:3000" env_file: - .env environment: