[Insert project description here.]
To run the code in local with Docker-Compose, please follow these steps:
Java 17 Maven Docker Docker-Compose
- Clone the repository to your local machine.
- Open a terminal window and navigate to the root directory of the project.
- Run the following command to build the application and generate the executable JAR file:
mvn clean install
- Navigate to the infras/ directory using the command cd infras/.
- Run the following command to build the Docker images required for the application:
docker-compose build
- Run the following command to start the containers in detached mode. This will start the application and its dependencies, such as databases or message queues:
docker-compose up -d
- You can verify that the application is running by navigating to http://localhost:8080 in your web browser.
- If you want to stop the running containers, run the following command:
docker-compose down
- If you want to remove the existing Docker-Compose and all its associated resources, run the following command:
docker-compose down -v
This will stop and remove all the containers, networks, and volumes created by Docker-Compose.
[Insert contribution guidelines here.]
[Insert license information here.]
[Insert acknowledgments here.]