fix: correct web service port mapping for development mode

- Changed web service port from 3001:80 to 3000:3000
- This matches the Vite development server port in the development target
- Fixes UI accessibility issue where Vite runs on port 3000 but was mapped to 3001

The issue was that docker-compose.dev.yml was using production port mapping
(3001:80 for nginx) but the development target uses Vite on port 3000.

Now the UI is accessible at http://localhost:3000 as expected.
This commit is contained in:
Mistral Vibe
2026-04-08 15:42:57 +02:00
parent 241dd24a22
commit 4f93d3ff4c

View File

@@ -49,7 +49,7 @@ services:
environment: environment:
API_URL: http://api:8000 API_URL: http://api:8000
ports: ports:
- "3001:80" - "3000:3000"
networks: networks:
- rh_net - rh_net
depends_on: depends_on: