Welcome to the Frontend Service Docker setup guide. This guide provides instructions on how to set up and run the frontend service using Docker containers.
To run the frontend locally, follow these steps:
-
Install Docker: https://docs.docker.com/get-docker/
-
Clone this repository
-
Navigate to the root of the project
-
Build and start the Docker containers:
docker-compose up
- The frontend service should now be running. You can access it at http://localhost:3000
To stop the service, use Ctrl+C in the terminal where Docker is running, or run:
docker-compose down
Docker does not support Next.js hot reloading. To see changes made in the code, stop the services and run docker-compose up --build
again.