docker compose up --build -d• App will be available at: http://localhost:5173
• --build ensures the image is rebuilt with your latest code
• -d runs in the background
Changes in your local files are reflected immediately inside the container via volume mapping.
docker compose up -d
docker compose down
docker logs -f backend
docker compose exec backend npm install