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