This guide provides detailed steps to set up and run the Backend application using Docker and Docker Compose. The application consists of three main components: the Backend service, MySQL database, and Redis cache.
Before starting, make sure you have installed the following components on your system:
Follow the instructions in the Docker documentation to install Docker for your specific operating system:
- Docker installation guide: https://docs.docker.com/engine/install/
After installing Docker, continue with the Docker Compose installation according to the Docker documentation:
- Docker Compose installation guide: https://docs.docker.com/compose/install/
- Open the terminal.
- Navigate to the application directory:
cd path/to/your/application
docker compose up -d- The application will run on port 8080 on localhost, and the API export path will be http://localhost:8080/api/v1/
