Skip to content

Latest commit

 

History

History
34 lines (19 loc) · 606 Bytes

README.md

File metadata and controls

34 lines (19 loc) · 606 Bytes

Docker Compose


Docker Compose - TODO Application

Running Both Services Together

To run both the backend and frontend services together using Docker Compose:

  1. Build and Start Containers:

    docker-compose up --build
  2. Access Services:

    • Frontend: http://localhost:3000
    • Backend: http://localhost:8000

Cleaning Up

To stop and remove containers:

docker-compose down

These README files provide a comprehensive guide for understanding, setting up, and running both the backend and frontend services for your project.