We can easily run the whole with only a single command:
docker-compose upThe services can be run on the background with command:
docker-compose up -d --buildStopping all the running containers is also simple with a single command:
docker-compose downIf you need to stop and remove all containers, networks, and all images used by any service in docker-compose.yml file, use the command:
docker-compose down --rmi allIf you want to remove everything that is not associated with a container (i.e. all images, volumes, networks, and containers that are not associated with a container), use the command:
docker system prune -aPlease refer to .env.sample files in each service folders to see what variables are needed.
The frontend system is built with React.js. Refer to the README.md in the frontend folder for more details.
The backend system is built with Nest.js. Refer to the README.md in the backend folder for more details.