-> Building a miniature model that replicates the architecture of Uber/Zomato's big data (Geospatial Data) engineering backend
- Clone the repository.
- Copy the
application.properties.examplefile in thesrc/main/resources/directory and rename it toapplication.properties. - Replace the placeholder values in the
application.propertiesfile with your actual database connection details. - Save the
application.propertiesfile. - Build and run the project.
To build a Docker image using this Dockerfile, you would run the following command in the directory containing your Dockerfile and Spring Boot project:
docker build -t map-backend-image .Once the Docker image is built, you can run a container using the image:
docker run -p 8080:8080 map-backend-imageThis will start your Spring Boot application inside a Docker container, and you can access it at http://localhost:8080 on your host machine.