Docker Setup
Quick guide to run the application using Docker
Prerequisites
Docker Desktop: Latest version installed
docker --version
Git: For cloning the repository
git clone https://github.com/hitaarthh/store-management-processor.git
Build Container
Create a Docker image from the source code
docker build -t store-management-processor .
Note: Make sure you're in the project root directory
Run Container
Start the containerized application
docker run -p 8081:8081 store-management-processor
The application will be available at: http://localhost:8081
Additional Commands
Stop Container
docker stop $(docker ps -q --filter ancestor=store-management-processor)
View Logs
docker logs -f store-management-processor
Remove Container
docker rm store-management-processor