Make sure that docker and docker-compose are installed on your computer
Run frontend and backend servers in containers with command:
docker-compose up -dRun app in containers and rebuild images:
docker-compose up -d --buildfrontend http://localhost:3000 backend http://localhost:3000/api/
docker-compose -f docker-compose.yml up -d --buildThis project needs a file .env with environment variables which has to be excluded from source control:
MONGO_USERNAME=dbUserName
MONGO_PASSWORD=you_password
MONGO_PORT=27017
MONGO_DB=dbName