fix: port mappings (3002 for app, 5434 for postgres) to avoid conflicts

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
CEO
2026-04-09 08:05:19 +00:00
parent 38973f2d63
commit bd132315b4
2 changed files with 5 additions and 5 deletions

View File

@@ -58,8 +58,8 @@ echo "Waiting for app to start..."
sleep 5
# Health check
if curl -sf http://localhost:3000 > /dev/null 2>&1; then
echo "App is running at http://localhost:3000"
if curl -sf http://localhost:3002 > /dev/null 2>&1; then
echo "App is running at http://localhost:3002"
else
echo "Warning: App may not be ready yet. Check logs with:"
echo " docker compose -p $PROJECT_NAME logs -f app"