Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 853 Bytes

File metadata and controls

28 lines (21 loc) · 853 Bytes

Docker Instructions

Prerequisites

  • Docker and Docker Compose installed on your machine.

Running the Application

  1. Open a terminal in the project root.

  2. Run the following command to build and start the services:

    docker compose up --build

    (Note: If you have an older version of Docker, you might need docker-compose up --build)

  3. Access the application:

Stopping the Application

Press Ctrl+C in the terminal or run:

docker compose down

specific Notes

  • The Backend is mapped to port 3001 on your host machine because the frontend currently expects the API at http://localhost:3001/api.
  • The Frontend can be accessed at port 8080.