fix: correct app port mapping in docker-compose.yml to use 3000

This commit is contained in:
2026-04-27 00:46:10 -04:00
parent 56c9cce4c7
commit 665646bc18

View File

@@ -3,7 +3,7 @@ services:
build: ./app
working_dir: /app
ports:
- "${APP_PORT:-3023}:3000"
- "${APP_PORT:-3000}:3000"
environment:
- APP_PORT=3000
- NODE_ENV=${NODE_ENV:-development}