To use docker in the development process you need to have docker and docker-compose installed. You can find a guide to install docker and docker-compose here.
Once you have installed docker and docker-compose you are available to use this commands
Available commands
docker-compose upruns the whole stack (the first time builds the project)docker-compose exec frontend npm run testruns FE tests (first run docker-compose up in another terminal)docker-compose exec backend npm run testruns BE tests (first run docker-compose up in another terminal)