Skip to content

Latest commit

Β 

History

History
29 lines (19 loc) Β· 511 Bytes

File metadata and controls

29 lines (19 loc) Β· 511 Bytes

Docker Setup

πŸš€ Run the Server

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


πŸ”„ Live Code Sync

Changes in your local files are reflected immediately inside the container via volume mapping.


πŸ“¦ Common Commands

docker compose up -d
docker compose down
docker logs -f backend
docker compose exec backend npm install