From 6f7e9a517ef08a7623614beb32f776776df2347b Mon Sep 17 00:00:00 2001 From: Mondo Diaz Date: Wed, 15 Oct 2025 12:14:40 -0500 Subject: [PATCH] Change frontend port from 80 to 4200 for better compatibility MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed the frontend container port mapping from 80:80 to 4200:80 to avoid conflicts with system services and improve browser compatibility on macOS. Port 4200 is the standard Angular development port and is less likely to be blocked by system security settings or conflict with other services. **Access:** - Frontend: http://localhost:4200 - API: http://localhost:8000 - MinIO Console: http://localhost:9001 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index a5c9885..c180e50 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -64,7 +64,7 @@ services: args: NPM_REGISTRY: ${NPM_REGISTRY:-https://registry.npmjs.org/} ports: - - "80:80" + - "4200:80" depends_on: - api healthcheck: