Docker Setup
This section provides a step-by-step guide to installing Docker and running the project using Docker Compose.
Install Docker
Install Docker on your machine by following the instructions provided in the official Docker documentation:
Create a .env File
Set up your environment variables by creating a .env file in the project root.
An example configuration file is available here: .env.example.
Run the Project Using Docker
If Docker is installed, you can run the project using Docker. To do so, open a command prompt and run the following command:
docker-compose up -d --buildNote
Make sure Docker is running before executing this command.
This command will build and start the Docker containers defined in the docker-compose.yml file.